星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

XHMicroLessonSystemWindow.xaml.cs 1.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Windows;
  7. using System.Windows.Controls;
  8. using System.Windows.Data;
  9. using System.Windows.Documents;
  10. using System.Windows.Input;
  11. using System.Windows.Media;
  12. using System.Windows.Media.Imaging;
  13. using System.Windows.Shapes;
  14. namespace XHWK.WKTool
  15. {
  16. /// <summary>
  17. /// XHMicroLessonSystemWindow.xaml 的交互逻辑
  18. /// </summary>
  19. public partial class XHMicroLessonSystemWindow : Window
  20. {
  21. public XHMicroLessonSystemWindow()
  22. {
  23. InitializeComponent();
  24. }
  25. /// <summary>
  26. /// 初始化
  27. /// </summary>
  28. public void Initialize()
  29. {
  30. }
  31. /// <summary>
  32. /// 窗体移动
  33. /// </summary>
  34. /// <param name="sender"></param>
  35. /// <param name="e"></param>
  36. private void Window_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  37. {
  38. DragMove();
  39. }
  40. }
  41. }