示例#1
0
 public void SetParent(MyTreeNode parent)
 {
     Parent = parent;
 }
示例#2
0
 public void AddChild(MyTreeNode child)
 {
     child.Parent = this;
     Children.Add(child);
 }