FloorDrawingForm.xaml.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 CollaborativePlatformMain.Form
  15. {
  16. /// <summary>
  17. /// FloorDrawingForm.xaml 的交互逻辑
  18. /// </summary>
  19. public partial class FloorDrawingForm : Window
  20. {
  21. /// <summary>
  22. /// 楼层管理器
  23. /// </summary>
  24. public FloorDrawingForm()
  25. {
  26. InitializeComponent();
  27. }
  28. /// <summary>
  29. /// 窗体初始化
  30. /// </summary>
  31. /// <param name="sender"></param>
  32. /// <param name="e"></param>
  33. private void Window_Loaded(object sender, RoutedEventArgs e)
  34. {
  35. }
  36. private void StackPanel_MouseDown(object sender, MouseButtonEventArgs e)
  37. {
  38. }
  39. /// <summary>
  40. /// 窗体关闭事件
  41. /// </summary>
  42. /// <param name="sender"></param>
  43. /// <param name="e"></param>
  44. private void Window_Closed(object sender, EventArgs e)
  45. {
  46. }
  47. }
  48. }