Exemple #1
0
 public ProjectTreeNode()
 {
     NodeID     = GetHashCode().ToString();
     Nodes      = new ProjectTreeNodeCollection(this);
     nodesDirty = true;
 }
 public BaseProjectNode(PartProject project)
 {
     Project   = project;
     Childrens = new ProjectTreeNodeCollection(this);
 }
 public BaseProjectNode(PartProject project, string text) : this(project)
 {
     Text      = text;
     Childrens = new ProjectTreeNodeCollection(this);
 }
 protected BaseProjectNode()
 {
     Childrens = new ProjectTreeNodeCollection(this);
 }