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

38 righe
1.1 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using BPASmartClient.Helper;
  7. using BPASmartClient.Model;
  8. using Microsoft.Toolkit.Mvvm.ComponentModel;
  9. using Microsoft.Toolkit.Mvvm.Input;
  10. using BPASmartClient.EventBus;
  11. namespace BPASmartClient.MorkS.ViewModel
  12. {
  13. public class DebugViewModel : ObservableObject
  14. {
  15. public DebugViewModel()
  16. {
  17. InitCommand = new RelayCommand(() => { ActionManage.GetInstance.Send("InitDevice"); });
  18. SimOrderCommand = new RelayCommand(() =>
  19. {
  20. new MorksSimorderModel() { Bowloc = this.BowlLoc, NoodleLoc = this.NoodleLoc }.Publish();
  21. });
  22. }
  23. public RelayCommand InitCommand { get; set; }
  24. public RelayCommand SimOrderCommand { get; set; }
  25. public int NoodleLoc { get { return _mNoodleLoc; } set { _mNoodleLoc = value; OnPropertyChanged(); } }
  26. private int _mNoodleLoc = 1;
  27. public int BowlLoc { get { return _mBowlLoc; } set { _mBowlLoc = value; OnPropertyChanged(); } }
  28. private int _mBowlLoc = 10;
  29. }
  30. }