Example #1
0
 protected EventTreeNodeBase(EventTreeNodeBase parent, string text)
 {
     Parent    = parent;
     Text      = text;
     IsVisible = true;
 }
Example #2
0
 protected EventTreeNodeBase(EventTreeNodeBase parent, string text)
 {
     Parent = parent;
     Text   = text;
 }
Example #3
0
 public EventTreeNodeBase(EventTreeNodeBase parent, string text)
 {
     this.Parent = parent;
     this.Text   = text;
 }