终端一体化运控平台
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PlcVarMonitorViewModel.cs 428 B

1 년 전
1 년 전
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. }