1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Windows;
- using System.Windows.Input;
- namespace DataDisplayBoard
- {
- /// <summary>
- /// MainWindow.xaml 的交互逻辑
- /// </summary>
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
- }
- private void Window_MouseMove(object sender, MouseEventArgs e)
- {
- try
- {
- if (e.LeftButton == MouseButtonState.Pressed)
- {
- //this.DragMove();
- }
- }
- catch(Exception ex)
- {
- }
- }
- }
- }
|