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