如何在C#中的Combobox中添加文件夹浏览器

如何在C#中的Combobox中添加文件夹浏览器

本文介绍了如何在C#中的Combobox中添加文件夹浏览器?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好我如何在c#中的组合框中添加文件夹浏览器?在组合框中使用可以从我的电脑中选择任何文件夹吗?他会看到组合框内的所有驱动器和文件夹。





Hi all how can i add a folder browser in a combobox in c# ? in combobox use can select any folder from my computer ? he will see all the drives and folder inside that combobox.


dropdownfolderbrowser

推荐答案

void ListDirectory()
{
    treeView1.Nodes.Clear();
    var rootDirectoryInfo = new DirectoryInfo(txtPath.Text);
    treeView1.Nodes.Add(CreateDirectoryNode(rootDirectoryInfo));
    LoadFileDetails("");
}
TreeNode CreateDirectoryNode(DirectoryInfo directoryInfo)
{
    var directoryNode = new TreeNode(directoryInfo.Name);
    try
    {
        foreach (var directory in directoryInfo.GetDirectories())
        {
            directoryNode.Nodes.Add(CreateDirectoryNode(directory));
        }
    }
    catch (UnauthorizedAccessException) { }
    catch (Exception) { }
    return directoryNode;
} 


这篇关于如何在C#中的Combobox中添加文件夹浏览器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 11:53