コード例 #1
0
ファイル: SolutionFileTree.cs プロジェクト: 00Green27/DocUI
 public void addRootAndRename(FiledropsDirectory dir, SolutionInfo si)
 {
     FolderTreeNode node = new SolutionRootNode(Manager, si, dir, showExtBinding);
     this.RootDirectories.Add(node.Entry);
     this.buildFolderRoot(node);
     this.Items.Add(node);
     node.RenameNode();
 }
コード例 #2
0
ファイル: SolutionFileTree.cs プロジェクト: 00Green27/DocUI
 public FolderTreeNode addRoot(FiledropsDirectory dir, SolutionInfo si)
 {
     FolderTreeNode node = new SolutionRootNode(Manager, si, dir, showExtBinding);
     this.RootDirectories.Add(node.Entry);
     this.buildFolderRoot(node);
     if (ShowRoot)
     {
         this.Items.Add(node);
     }
     return node;
 }