终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

24 行
653 B

  1. using BPASmartClient.JXJFoodSmallStation.Model;
  2. using BPASmartClient.JXJFoodSmallStation.Model.GVL;
  3. using BPASmartClient.JXJFoodSmallStation.Model.HK_PLC;
  4. using BPA.Helper;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Collections.ObjectModel;
  8. using System.Linq;
  9. using System.Reflection;
  10. using System.Text;
  11. using System.Threading.Tasks;
  12. namespace BPASmartClient.JXJFoodSmallStation.ViewModel
  13. {
  14. public class ProcessMonitorViewModel : NotifyBase
  15. {
  16. public ProcessMonitorViewModel()
  17. {
  18. }
  19. public ObservableCollection<PlcInfos> plcInfos => ProcessControl.GetInstance.ProcessVar;
  20. }
  21. }