终端一体化运控平台
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

NewRecipeView.xaml.cs 970 B

há 1 ano
há 2 anos
12345678910111213141516171819202122232425262728
  1. using BPA.Helper;
  2. using System;
  3. using System.Windows;
  4. using System.Windows.Controls;
  5. using System.Windows.Input;
  6. namespace BPASmartClient.DosingSystem.View
  7. {
  8. /// <summary>
  9. /// NewRecipeView.xaml 的交互逻辑
  10. /// </summary>
  11. public partial class NewRecipeView : Window
  12. {
  13. public NewRecipeView()
  14. {
  15. InitializeComponent();
  16. this.btClose.Click += (o, e) => { this.Close(); };
  17. this.br.MouseLeftButtonDown += (o, e) => { if (e.LeftButton == MouseButtonState.Pressed) this.DragMove(); };
  18. ActionManage.GetInstance.Register(new Action(() => { this.Close(); }), "CloseNewRecipeView", true);
  19. this.Unloaded += (o, s) => { Json<LocalRecipe>.Save(); };
  20. }
  21. private void cb_SelectionChanged(object sender, SelectionChangedEventArgs e)
  22. {
  23. //ActionManage.GetInstance.SendAsync("原料选择修改", (sender as ComboBox).SelectedValue);
  24. }
  25. }
  26. }