Customising the browse for folder dialog to show the path

后端 未结 2 892
借酒劲吻你
借酒劲吻你 2020-12-09 08:39

Does anyone know what is the simplest way to customise the System.Windows.Forms.FolderBrowserDialog so a path can be entered using text in a textbox below the tree.

2条回答
  •  自闭症患者
    2020-12-09 09:01

    Just this weekend I needed this. I looked and looked but could not find it. Resorted to writing it myself, based on that KB article, and some other things. Here ya go. FolderBrowserDialogEx

    Full Source code. Free. MS-Public license.

    FolderBrowserDialogEx

    Code to use it:

         var dlg1 = new Ionic.Utils.FolderBrowserDialogEx();
         dlg1.Description = "Select a folder to extract to:";
         dlg1.ShowNewFolderButton = true;
         dlg1.ShowEditBox = true;
         //dlg1.NewStyle = false;
         dlg1.SelectedPath = txtExtractDirectory.Text;
         dlg1.ShowFullPathInEditBox = true;
         dlg1.RootFolder = System.Environment.SpecialFolder.MyComputer;
    
         // Show the FolderBrowserDialog.
         DialogResult result = dlg1.ShowDialog();
         if (result == DialogResult.OK)
         {
             txtExtractDirectory.Text = dlg1.SelectedPath;
         }
    

    Capabilities: shows editbox, shows full path in edit box. Can be used to browse printers or computers, as well as files+folders, or just folders.

    Edit, 2018-05-31: If the Codeplex link above does not work for you, this Git resource also exists.

提交回复
热议问题