📄 parentchild.cs
字号:
using System;
namespace Netron.Lithium
{
/// <summary>
/// Utility class to speed up the deserialization of connections
/// </summary>
public struct ParentChild
{
/// <summary>
/// Default ctor
/// </summary>
/// <param name="child"></param>
/// <param name="parent"></param>
public ParentChild( ShapeBase child, string parent)
{
this.Parent = parent;
this.ChildShape = child;
//this.ParentShape = null;
//this.ChildShape = null;
}
/// <summary>
/// Gets or sets the parent in this relation
/// </summary>
public string Parent;
/// <summary>
/// Gets or sets the child in this relation
/// </summary>
public ShapeBase ChildShape;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -