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

38 regels
1.2 KiB

  1. using BPA.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.DosingSystemSingle.View
  16. {
  17. /// <summary>
  18. /// NewRecipeView.xaml 的交互逻辑
  19. /// </summary>
  20. public partial class NewRecipeView : Window
  21. {
  22. public NewRecipeView()
  23. {
  24. InitializeComponent();
  25. this.btClose.Click += (o, e) => { this.Close(); };
  26. this.br.MouseLeftButtonDown += (o, e) => { if (e.LeftButton == MouseButtonState.Pressed) this.DragMove(); };
  27. ActionManage.GetInstance.Register(new Action(() => { this.Close(); }), "CloseNewRecipeView", true);
  28. this.Unloaded += (o, s) => { Json<LocaPar>.Save(); };
  29. }
  30. private void cb_SelectionChanged(object sender, SelectionChangedEventArgs e)
  31. {
  32. //ActionManage.GetInstance.SendAsync("原料选择修改", (sender as ComboBox).SelectedValue);
  33. }
  34. }
  35. }