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

22 righe
545 B

  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 Microsoft.Toolkit.Mvvm.ComponentModel;
  8. using Microsoft.Toolkit.Mvvm.Input;
  9. namespace BPASmartClient.MorkS.ViewModel
  10. {
  11. public class DebugViewModel : ObservableObject
  12. {
  13. public DebugViewModel()
  14. {
  15. InitCommand = new RelayCommand(() => { ActionManage.GetInstance.Send("InitDevice"); });
  16. }
  17. public RelayCommand InitCommand { get; set; }
  18. }
  19. }