|
1234567891011121314151617181920212223 |
- using BPASmartClient.JXJFoodSmallStation.Model;
- using BPASmartClient.JXJFoodSmallStation.Model.GVL;
- using BPASmartClient.JXJFoodSmallStation.Model.HK_PLC;
- using BPA.Helper;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Reflection;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodSmallStation.ViewModel
- {
- public class PlcVarMonitorViewModel : NotifyBase
- {
- public PlcVarMonitorViewModel()
- {
-
- }
- public ObservableCollection<PlcInfos> plcInfos => ProcessControl.GetInstance.CommData;
- }
- }
|