终端一体化运控平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 

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