Example #1
0
 public TreeGraphNode(TreeGraph tree, object value, TreeGraphNode parent)
     : base(tree, value)
 {
     this.Parent = parent;
     this.Children = new List<ITreeNode>();
     //parent.AddChild( this );
 }
Example #2
0
        public override object Clone()
        {
            TreeGraphNode tNode = new TreeGraphNode( this.Tree as TreeGraph, this.Value, this.Parent as TreeGraphNode );

            base.CopyTo( tNode );

            return tNode;
        }
 public TreeNodeWrapper(TreeGraphWrapper wrapper, TreeGraphNode node)
     : base(wrapper, node)
 {
     this.Font = new Font("Arial", 8);
 }