终端一体化运控平台
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.
 
 
 

24 lines
637 B

  1. using System.Windows;
  2. using System.Windows.Input;
  3. namespace BPASmartClient.FoodStationTest.View
  4. {
  5. /// <summary>
  6. /// NewMateritalView.xaml 的交互逻辑
  7. /// </summary>
  8. public partial class NewMaterialView : Window
  9. {
  10. public NewMaterialView()
  11. {
  12. InitializeComponent();
  13. this.btClose.Click += (o, e) => { this.Close(); };
  14. this.br.MouseLeftButtonDown += (o, e) => { if (e.LeftButton == MouseButtonState.Pressed) this.DragMove(); };
  15. }
  16. private void btClose_Click(object sender, RoutedEventArgs e)
  17. {
  18. this.Close();
  19. }
  20. }
  21. }