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

41 lignes
1.0 KiB

  1. using BPA.Helper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Collections.ObjectModel;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPASmartClient.MorkTM.ViewModel
  9. {
  10. public class DebugViewModel : NotifyBase
  11. {
  12. /// <summary>
  13. /// 出料口集合
  14. /// </summary>
  15. public List<string> Materials { get; set; } = new List<string>();
  16. /// <summary>
  17. /// 奶茶
  18. /// </summary>
  19. public ObservableCollection<string> TeaWithMilkType { get; set; }
  20. /// <summary>
  21. /// 出料
  22. /// </summary>
  23. public BPARelayCommand OutMaterials { get; set; }
  24. /// <summary>
  25. /// 转盘转动
  26. /// </summary>
  27. public BPARelayCommand TurnOn { get; set; }
  28. public float MaertialsWight { get { return _maertialsWight; } set { _maertialsWight = value; OnPropertyChanged(); } }
  29. private float _maertialsWight = 10;
  30. public DebugViewModel()
  31. {
  32. }
  33. }
  34. }