Exemplo n.º 1
0
        public SmartTree()
        {
            InitializeComponent();

            _contentPanel.SetOwnerTree(this);

            _rootNodes     = new SmartTreeNodeCollection(null, this);
            _selectedNodes = new List <SmartTreeNode>();
            // TODO: need to sign up for change event on this collection, e.g.
            // when a node is added/removed. Then those nodes need to be
            // invalidated. [17apr08, ml]
        }
Exemplo n.º 2
0
 public SmartTreeNode()
 {
     _nodes = new SmartTreeNodeCollection(this, _ownerTree);
 }