Beispiel #1
0
 /// <summary>
 /// Opens the node and all child nodes.
 /// </summary>
 public void ExpandAll()
 {
     foreach (ControlBase child in Children)
     {
         PropertyTreeNode node = child as PropertyTreeNode;
         if (node == null)
         {
             continue;
         }
         node.Open();
     }
 }