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

25 regels
765 B

  1. using BPA.Helper;
  2. using System;
  3. using System.Windows;
  4. using System.Windows.Input;
  5. namespace BPASmartClient.FoodStationTest.View
  6. {
  7. /// <summary>
  8. /// DeviceMaterialParView.xaml 的交互逻辑
  9. /// </summary>
  10. public partial class NewLocalRecipeView : Window
  11. {
  12. public NewLocalRecipeView()
  13. {
  14. InitializeComponent();
  15. this.Close.Click += (o, e) => { this.Close(); };
  16. this.br.MouseLeftButtonDown += (o, e) => { if (e.LeftButton == MouseButtonState.Pressed) this.DragMove(); };
  17. //ActionManage.GetInstance.CancelRegister("CloseNewRemoteRecipeView");
  18. ActionManage.GetInstance.Register(new Action(() => { this.Close(); }), "CloseNewRemoteRecipeView", true);
  19. }
  20. }
  21. }