终端一体化运控平台
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

24 rader
682 B

  1. using BPASmartClient.JXJFoodSmallStation.Model;
  2. using BPASmartClient.JXJFoodSmallStation.Model.GVL;
  3. using BPASmartClient.JXJFoodSmallStation.Model.HK_PLC;
  4. using Microsoft.Toolkit.Mvvm.ComponentModel;
  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 : ObservableObject
  15. {
  16. public PlcVarMonitorViewModel()
  17. {
  18. }
  19. public ObservableCollection<PlcInfos> plcInfos => ProcessControl.GetInstance.CommData;
  20. }
  21. }