终端一体化运控平台
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

10 行
365 B

  1. namespace BPASmartClient.MorkCL.ViewModel
  2. {
  3. public class MonitorViewModel
  4. {
  5. public static int DeviceId { get; set; }
  6. public ObservableCollection<VariableMonitor> VariableMonitors { get; set; } =
  7. Plugin.GetInstance()?.GetPlugin<DeviceMgr>()?.GetDevices()?.FirstOrDefault(p => p.DeviceId == DeviceId)?.variableMonitors;
  8. }
  9. }