예제 #1
0
		public TreeNodeImpl(TreeViewImpl treeViewImpl, TreeNodeData data) {
			Debug.Assert(data.TreeNode == null);
			TreeView = treeViewImpl;
			nodeList = new SharpTreeNodeChildrenList(this);
			Data = data;
			Data.TreeNode = this;
		}
예제 #2
0
 public TreeNodeImpl(TreeViewImpl treeViewImpl, ITreeNodeData data)
 {
     Debug.Assert(data.TreeNode == null);
     this.treeViewImpl = treeViewImpl;
     this.nodeList = new SharpTreeNodeChildrenList(this);
     this.data = data;
     this.data.TreeNode = this;
 }
예제 #3
0
 public TreeNodeImpl(TreeViewImpl treeViewImpl, TreeNodeData data)
 {
     Debug.Assert(data.TreeNode == null);
     TreeView      = treeViewImpl;
     nodeList      = new SharpTreeNodeChildrenList(this);
     Data          = data;
     Data.TreeNode = this;
 }
예제 #4
0
파일: TreeNodeImpl.cs 프로젝트: zdone/dnSpy
 public TreeNodeImpl(TreeViewImpl treeViewImpl, ITreeNodeData data)
 {
     Debug.Assert(data.TreeNode == null);
     this.treeViewImpl  = treeViewImpl;
     this.nodeList      = new SharpTreeNodeChildrenList(this);
     this.data          = data;
     this.data.TreeNode = this;
 }