更新版本信息

This commit is contained in:
liufei
2021-09-15 10:12:44 +08:00
parent 3d877092e5
commit b097001e6c
6 changed files with 40 additions and 21 deletions

View File

@@ -63,6 +63,19 @@ namespace GeekDesk.Control.Windows
}
}
/// <summary>
/// 移动窗口
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void DragMove(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
if (e.LeftButton == MouseButtonState.Pressed)
{
this.DragMove();
}
}
private static System.Windows.Window window = null;
public static void Show(AppConfig appConfig, MainWindow mainWindow)
{