终端一体化运控平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

20 lignes
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. }