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

DebugViewModel.cs 545 B

2 years ago
123456789101112131415161718192021
  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. }