private void rightButton_Click(object sender, EventArgs e) { if (rightTree.Nodes.Count > 0) { return; } executeCommand(); System.Threading.Thread.Sleep(200); FolderBrowserDialog fbd = new FolderBrowserDialog(); //上部に表示する説明テキストを指定する fbd.Description = "フォルダを指定してください。"; //ルートフォルダを指定する //デフォルトでDesktop fbd.RootFolder = Environment.SpecialFolder.Desktop; //最初に選択するフォルダを指定する //fbd.SelectedPath = @"Z:\Interstage\J2EE\var\deployment\ijserver\Cloud11\apps\Cloud11.war\WEB-INF\classes\jp\fujitsu\saas"; fbd.SelectedPath = System.Configuration.ConfigurationManager.AppSettings.Get("DefaultServerProjectPath"); //ユーザーが新しいフォルダを作成できるようにする //デフォルトでTrue fbd.ShowNewFolderButton = true; //ダイアログを表示する if (fbd.ShowDialog(this) == DialogResult.OK) { rightRootPath = fbd.SelectedPath + "\\"; List <string[]> fileNameList = FolderSupport.getFileNameList(rightRootPath, rightRootPath); NodeSupport.addRootNode(fileNameList, rightTree); } }
private void leftButton_Click(object sender, EventArgs e) { if (leftTree.Nodes.Count > 0) { return; } FolderBrowserDialog fbd = new FolderBrowserDialog(); //上部に表示する説明テキストを指定する fbd.Description = "フォルダを指定してください。"; //ルートフォルダを指定する //デフォルトでDesktop fbd.RootFolder = Environment.SpecialFolder.Desktop; //最初に選択するフォルダを指定する fbd.SelectedPath = System.Configuration.ConfigurationManager.AppSettings.Get("DefaultLocalProjectPath"); //ユーザーが新しいフォルダを作成できるようにする //デフォルトでTrue fbd.ShowNewFolderButton = true; //ダイアログを表示する if (fbd.ShowDialog(this) == DialogResult.OK) { leftRootPath = fbd.SelectedPath + "\\"; List <string[]> fileNameList = FolderSupport.getFileNameList(leftRootPath, leftRootPath); NodeSupport.addRootNode(fileNameList, leftTree); } }
private void rightTree_NodeMouseDoubleClick(object sender, TreeNodeMouseClickEventArgs e) { e.Node.Nodes.Clear(); string nodePath = rightRootPath + NodeSupport.getNodePath(e.Node); List <string[]> subFileNameList = FolderSupport.getFileNameList(nodePath, nodePath); NodeSupport.addSubNode(subFileNameList, e.Node); }
private void leftTree_NodeMouseDoubleClick(object sender, TreeNodeMouseClickEventArgs e) { e.Node.Nodes.Clear(); string nodePath = leftRootPath + NodeSupport.getNodePath(e.Node); List <string[]> subFileNameList = FolderSupport.getFileNameList(nodePath, nodePath); NodeSupport.addSubNode(subFileNameList, e.Node, leftTree); // フォルダの同期展開 TreeNode[] rightNodes = rightTree.Nodes.Find(e.Node.Name, true); if (rightNodes.Length > 0) { TreeNode rightNode = rightNodes[0]; rightNode.Nodes.Clear(); string rightNodePath = rightRootPath + NodeSupport.getNodePath(rightNode); List <string[]> rightSubFileNameList = FolderSupport.getFileNameList(rightNodePath, rightNodePath); NodeSupport.addSubNode(rightSubFileNameList, rightNode); } }