终端一体化运控平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

24 lignes
649 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 PlcVarMonitorViewModel : NotifyBase
  15. {
  16. public PlcVarMonitorViewModel()
  17. {
  18. }
  19. public ObservableCollection<PlcInfos> plcInfos => ProcessControl.GetInstance.CommData;
  20. }
  21. }