终端一体化运控平台
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

17 wiersze
465 B

  1. using BPASmartClient.FoodStationTest.Model;
  2. using BPASmartClient.FoodStationTest.Model.GVL;
  3. using Microsoft.Toolkit.Mvvm.ComponentModel;
  4. using System.Collections.ObjectModel;
  5. namespace BPASmartClient.FoodStationTest.ViewModel
  6. {
  7. public class ProcessMonitorViewModel : ObservableObject
  8. {
  9. public ProcessMonitorViewModel()
  10. {
  11. }
  12. public ObservableCollection<PlcInfos> plcInfos => ProcessControl.GetInstance.ProcessVar;
  13. }
  14. }