终端一体化运控平台
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

27 righe
718 B

  1. using System.Windows.Input;
  2. namespace BPASmartClient.MorkCL.View
  3. {
  4. /// <summary>
  5. /// EditRecipeView.xaml 的交互逻辑
  6. /// </summary>
  7. public partial class EditRecipeView : Window
  8. {
  9. public EditRecipeView()
  10. {
  11. InitializeComponent();
  12. this.br.MouseLeftButtonDown += (o, e) => { if (e.LeftButton == MouseButtonState.Pressed) this.DragMove(); };
  13. ActionManage.GetInstance.Register(() =>
  14. {
  15. this.Close();
  16. }, "CloseEditRecipeView", true);
  17. }
  18. private void Button_Click(object sender, RoutedEventArgs e)
  19. {
  20. this.DialogResult = false;
  21. this.Close();
  22. }
  23. }
  24. }