Habanero.Faces.Win.TreeViewWin.TreeNodeCollectionWin.TreeNodeCollectionWin C# (CSharp) Method

TreeNodeCollectionWin() public method

constructs a TreeNodeCollectionWin
public TreeNodeCollectionWin ( TreeNodeCollection nodes, IControlFactory controlFactory ) : System
nodes System.Windows.Forms.TreeNodeCollection The underlying Nodes collection
controlFactory IControlFactory Control Factory used to Create new nodes for this collection
return System
            public TreeNodeCollectionWin(TreeNodeCollection nodes, IControlFactory controlFactory)
            {
                if (nodes == null) throw new ArgumentNullException("nodes");
                if (controlFactory == null) throw new ArgumentNullException("controlFactory");
                _nodes = nodes;
                _controlFactory = controlFactory;
            }