命令树优化,测试编辑区域优化

This commit is contained in:
“hsc”
2026-08-27 10:50:10 +08:00
parent 99ac3f2b8d
commit e144dc78a7
24 changed files with 1520 additions and 338 deletions
+8 -1
View File
@@ -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);
}
}
}