소스 검색

匿名对象获取

样式分支
pry 2 년 전
부모
커밋
1f42a50ce9
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  1. +7
    -1
      BPASmartClient.Device/BaseDevice.cs

+ 7
- 1
BPASmartClient.Device/BaseDevice.cs 파일 보기

@@ -181,7 +181,11 @@ namespace BPASmartClient.Device
});
alarmHelper.RemoveAction = new Action<string>((s) =>
{
//Error;
var res = Error.FirstOrDefault(p => p.GetType().GetProperty("Text").GetValue(p).ToString() == s);
if (res != null && Error.Contains(res))
{
Error.Remove(res);
}
});
ThreadManage.GetInstance().StartLong(new Action(() =>
{
@@ -194,6 +198,8 @@ namespace BPASmartClient.Device
});
}



/// <summary>
/// 报警监控
/// </summary>


불러오는 중...
취소
저장