LIN SCH 更改
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
using CapMachine.Model.CANLIN;
|
||||
using CapMachine.Model.CANLIN;
|
||||
using Prism.Mvvm;
|
||||
|
||||
namespace CapMachine.Wpf.Dtos
|
||||
@@ -20,6 +20,16 @@ namespace CapMachine.Wpf.Dtos
|
||||
set { _IsActive = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private bool _IsMsgActived;
|
||||
/// <summary>
|
||||
/// 帧/报文是否被选中(隶属某个调度表)
|
||||
/// </summary>
|
||||
public bool IsMsgActived
|
||||
{
|
||||
get { return _IsMsgActived; }
|
||||
set { _IsMsgActived = value; RaisePropertyChanged(); }
|
||||
}
|
||||
|
||||
private string? _MsgName;
|
||||
/// <summary>
|
||||
/// 消息名称/帧名称
|
||||
|
||||
Reference in New Issue
Block a user