命令树优化,测试编辑区域优化
This commit is contained in:
@@ -12,7 +12,7 @@ namespace UIShare.UIViewModel
|
||||
public class InstructionNodeVM : BindableBase
|
||||
{
|
||||
private string _name = string.Empty;
|
||||
|
||||
|
||||
public string Name
|
||||
{
|
||||
get => _name;
|
||||
@@ -32,5 +32,12 @@ namespace UIShare.UIViewModel
|
||||
get => _tag;
|
||||
set => SetProperty(ref _tag, value);
|
||||
}
|
||||
|
||||
private string? _tooltip;
|
||||
public string? Tooltip
|
||||
{
|
||||
get => _tooltip;
|
||||
set => SetProperty(ref _tooltip, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user