从节点Model解耦出容器接口,重新设计了节点的保存、加载。

This commit is contained in:
fengjiayi
2024-12-24 22:23:53 +08:00
parent 949ac973bc
commit 5b0ba84fd6
30 changed files with 979 additions and 760 deletions

View File

@@ -230,8 +230,15 @@ namespace Serein.Library
/// </summary>
public ParameterData[] ParameterData { get; set; }
/// <summary>
/// 如果是区域控件,则会存在子项。
/// 父级节点Guid
/// </summary>
public string ParentNodeGuid{ get; set; }
/// <summary>
/// 如果是区域控件则会存在子项这里记录的是子项的Guid。
/// </summary>
public string[] ChildNodeGuids { get; set; }