Пример #1
0
 public TreeListNode(string item)
     : base(item)
 {
     _nodes      = new TreeListNodeCollection(this);
     _expanded   = false;
     _parentNode = null;
 }
Пример #2
0
 public TreeListView()
 {
     this.View = View.Details;
     InitializeImageLists();
     _nodes = new TreeListNodeCollection(this);
 }