" SelectFolderDialog"在.NET中

问题描述:

.NET中没有 SelectFolderDialog ,但它出现在 Visual Studio 2010 中。

There is no SelectFolderDialog in .NET but It is present itself in Visual Studio 2010.

我想知道是否有这样的外部.net组件。

I was wondering if there is any external .net component like this form.

这是VS2010对话框:

Here is the VS2010 Dialog :

请注意,我不想使用 FolderBrowserDialog ,我需要获取 SelectFolderDialog

Please Note that I dont want to use the FolderBrowserDialog and I need to get the Specific UI described in the SelectFolderDialog

要访问最新的 Vista文件夹选择对话框然后我相信你需要:

To gain access to the posh new Vista folder selection dialog then I believe that you need to either:


  1. 使用第三方组件,或

  2. 使用本机 IFileDialog 组件。

  1. Use a third party component, or
  2. Use the native IFileDialog component.

选项2使用 Windows API CodePack 。您需要包含 FOS_PICKFOLDERS 选项。 CodePack有很多例子。我赞扬你。

Option 2 is easy enough using the Windows API CodePack. You need to include the FOS_PICKFOLDERS option. The CodePack comes with lots of examples. I commend it to you.