终端一体化运控平台
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

PlcVarMonitorViewModel.cs 428 B

1 yıl önce
1 yıl önce
12345678910111213141516
  1. using BPASmartClient.FoodStationTest.Model;
  2. using BPASmartClient.FoodStationTest.Model.GVL;
  3. using BPA.Helper;
  4. using System.Collections.ObjectModel;
  5. namespace BPASmartClient.FoodStationTest.ViewModel
  6. {
  7. public class PlcVarMonitorViewModel : NotifyBase
  8. {
  9. public PlcVarMonitorViewModel()
  10. {
  11. }
  12. public ObservableCollection<PlcInfos> plcInfos => ProcessControl.GetInstance.CommData;
  13. }
  14. }