public TreeListNode(string item) : base(item) { _nodes = new TreeListNodeCollection(this); _expanded = false; _parentNode = null; }
public TreeListView() { this.View = View.Details; InitializeImageLists(); _nodes = new TreeListNodeCollection(this); }