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

46 righe
1.1 KiB

  1. using BPASmartClient.Helper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. using System.Windows;
  8. using System.Windows.Controls;
  9. using System.Windows.Data;
  10. using System.Windows.Documents;
  11. using System.Windows.Input;
  12. using System.Windows.Media;
  13. using System.Windows.Media.Imaging;
  14. using System.Windows.Shapes;
  15. namespace BPASmartClient.MorkBF.VIew
  16. {
  17. /// <summary>
  18. /// FoodManagerView.xaml 的交互逻辑
  19. /// </summary>
  20. public partial class FoodManagerView : Window
  21. {
  22. public FoodManagerView()
  23. {
  24. InitializeComponent();
  25. ActionManage.GetInstance.CancelRegister("FoodManagerViewClose");
  26. ActionManage.GetInstance.Register(new Action(()=>
  27. {
  28. this.Close();
  29. }), "FoodManagerViewClose");
  30. }
  31. private void Button_Click(object sender, RoutedEventArgs e)
  32. {
  33. ActionManage.GetInstance.Send("FoodManagerViewClose");
  34. }
  35. private void Grid_MouseLeftButtonDown(object sender, MouseButtonEventArgs e)
  36. {
  37. this.DragMove();
  38. }
  39. }
  40. }