There is no SelectFolderDialog
in .NET but It is present itself in Visual Studio 2010
.
I was wondering if there is any external .net compon
Here is a library that provides access to the folder browser dialog etc. http://www.ookii.org/software/dialogs/
It is a wrapper around several Win32 dialogs, it provides both a Windows Forms and WPF variant, and it provides the "Vista style" SelectFolderDialog that you have displayed for example.
To gain access to the posh new Vista folder selection dialog then I believe that you need to either:
IFileDialog
component.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.