bug优化

This commit is contained in:
艾竹
2025-01-19 11:02:03 +08:00
parent 4582897817
commit ddf89e21e4
12 changed files with 160 additions and 14 deletions

View File

@@ -458,9 +458,17 @@ namespace AIStudio.Wpf.DiagramDesigner
}
[Browsable(true)]
private string _name;
public string Name
{
get; set;
get
{
return _name;
}
set
{
SetProperty(ref _name, value);
}
}
private string _text;