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

26 lines
555 B

  1. using BPASmartClient.Business;
  2. using Microsoft.Toolkit.Mvvm.ComponentModel;
  3. using Microsoft.Toolkit.Mvvm.Input;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Reflection;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows;
  11. using System.Windows.Input;
  12. namespace BPASmartClient.ViewModel
  13. {
  14. /// <summary>
  15. /// 主界面
  16. /// </summary>
  17. public class MainViewModel : ObservableObject
  18. {
  19. public MainViewModel()
  20. {
  21. OrderStatusViewModel.Init();
  22. }
  23. }
  24. }