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.
|
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using Microsoft.Toolkit.Mvvm.Input;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.MorkTM.ViewModel
- {
- public class DebugViewModel : ObservableObject
- {
- /// <summary>
- /// 出料口集合
- /// </summary>
- public List<string> Materials { get; set; } = new List<string>();
-
- /// <summary>
- /// 奶茶
- /// </summary>
- public ObservableCollection<string> TeaWithMilkType { get; set; }
- /// <summary>
- /// 出料
- /// </summary>
- public RelayCommand OutMaterials { get; set; }
- /// <summary>
- /// 转盘转动
- /// </summary>
- public RelayCommand TurnOn { get; set; }
- public float MaertialsWight { get { return _maertialsWight; } set { _maertialsWight = value; OnPropertyChanged(); } }
- private float _maertialsWight = 10;
- public DebugViewModel()
- {
-
-
-
- }
- }
- }
|