using System.Windows;
using System.Windows.Input;
namespace XHWK.WKTool
{
///
/// 文件目录
///
public partial class FileDirectoryWindow : Window
{
///
/// 文件目录
///
public FileDirectoryWindow()
{
InitializeComponent();
}
///
/// 关闭
///
///
///
private void btnDown_Click(object sender, RoutedEventArgs e)
{
this.Hide();
}
///
/// 窗口移动
///
///
///
private void Window_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
{
DragMove();
}
}
}