Exemplo n.º 1
0
 public ProjectTreeNode()
 {
     NodeID     = GetHashCode().ToString();
     Nodes      = new ProjectTreeNodeCollection(this);
     nodesDirty = true;
 }
Exemplo n.º 2
0
 public BaseProjectNode(PartProject project)
 {
     Project   = project;
     Childrens = new ProjectTreeNodeCollection(this);
 }
Exemplo n.º 3
0
 public BaseProjectNode(PartProject project, string text) : this(project)
 {
     Text      = text;
     Childrens = new ProjectTreeNodeCollection(this);
 }
Exemplo n.º 4
0
 protected BaseProjectNode()
 {
     Childrens = new ProjectTreeNodeCollection(this);
 }