views:

528

answers:

3

Hello,

does anybody know, if there is a WindowsExplorer-like filebrowser which I can include in my WPF-window. I don't want use OpenFileDialog. I have searched a bit and only found simple directory-trees or lists. I want to have an interface like it is in OpenFileDialog.

Would be great if there are any advices,

Greetings, Martin

A: 

Have a look at this:

http://www.ssware.com/fileview/fileview.htm

Tony
A: 

It's WinForms, but I've sucessfully used it in WPF applications:

http://gong-shell.sourceforge.net/

(LGPL Licenced)

Groky
+1  A: 

I think the new 'CommonOpenFileDialog' is what you want. "Microsoft.WindowsAPICodePack.Dialogs.CommonOpenFileDialog" It is part of the win7 code pack, and will be part of .NET4.0 later. Search for CommonOpenFileDialog you can find lot of resources on web.

http://windowsteamblog.com/blogs/developers/archive/2009/04/16/light-up-with-windows-7-libraries.aspx

The code pack can be downloaded here http://code.msdn.microsoft.com/WindowsAPICodePack

Jobi Joy
the problem i have is, that i need to run my wpf application under windows xp. if i have understood right this solution only runs under windows vista and windows 7
martin