1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Data;
- using System.Windows.Documents;
- using System.Windows.Input;
- using System.Windows.Media;
- using System.Windows.Media.Imaging;
- using System.Windows.Shapes;
- namespace CollaborativePlatformMain.Form
- {
- /// <summary>
- /// FloorDrawingForm.xaml 的交互逻辑
- /// </summary>
- public partial class FloorDrawingForm : Window
- {
- /// <summary>
- /// 楼层管理器
- /// </summary>
- public FloorDrawingForm()
- {
- InitializeComponent();
- }
- /// <summary>
- /// 窗体初始化
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void Window_Loaded(object sender, RoutedEventArgs e)
- {
- }
- private void StackPanel_MouseDown(object sender, MouseButtonEventArgs e)
- {
- }
-
- /// <summary>
- /// 窗体关闭事件
- /// </summary>
- /// <param name="sender"></param>
- /// <param name="e"></param>
- private void Window_Closed(object sender, EventArgs e)
- {
- }
- }
- }
|