using BPASmartClient.Helper; using BPASmartClient.Model; using BPASmartClient.Model.小炒机; 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.ViewModel { public class FoodMenuViewModel: ObservableObject { /// /// 菜单 /// public ObservableCollection FoodMenus { get; set; } = new ObservableCollection(); public RelayCommand StartOrder { get; set; } public FoodMenuViewModel() { Json.Data.materials?.Keys?.ToList().ForEach(key => FoodMenus.Add(new FoodMenuModel { GoodName = key })); StartOrder = new RelayCommand((o) => { ActionManage.GetInstance.Send("开始下单", o); }); } } }