终端一体化运控平台
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

23 satır
727 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. /// NewRecipeView.xaml 的交互逻辑
  9. /// </summary>
  10. public partial class NewRecipeView : Window
  11. {
  12. public NewRecipeView()
  13. {
  14. InitializeComponent();
  15. this.btClose.Click += (o, e) => { this.Close(); };
  16. this.br.MouseLeftButtonDown += (o, e) => { if (e.LeftButton == MouseButtonState.Pressed) this.DragMove(); };
  17. ActionManage.GetInstance.CancelRegister("CloseNewRecipeView");
  18. ActionManage.GetInstance.Register(new Action(() => { this.Close(); }), "CloseNewRecipeView");
  19. }
  20. }
  21. }