终端一体化运控平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

22 行
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. }