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

20 righe
652 B

  1. using BPASmartClient.FoodStationTest.Model;
  2. using System.Windows.Controls;
  3. namespace BPASmartClient.FoodStationTest.View
  4. {
  5. /// <summary>
  6. /// RecipeSettingsView.xaml 的交互逻辑
  7. /// </summary>
  8. public partial class RecipeReceiveView : UserControl
  9. {
  10. public RecipeReceiveView()
  11. {
  12. InitializeComponent();
  13. this.IsUseStockBin.Click += (o, e) => { GVL_SmallStation.GetInstance.IsUseLocalRecipe = (bool)IsUseStockBin.IsChecked; };
  14. this.NotUseSmallDosing.Click += (o, e) => { GVL_SmallStation.GetInstance.NotUseSmallStation = (bool)NotUseSmallDosing.IsChecked; };
  15. }
  16. }
  17. }