views:

74

answers:

2

I would like to add a control to my app where the user can browse his local file system and select a directory. I would prefer to host this control on my main app window, and not do this via a pop-up dialog.

+3  A: 

There isn't one built in.

You can either use the WinForms file/folder browser, search Code Project or similar site for someone else's implementation or write your own.

I've found one on ookii.org that includes some other standard dialogs.

ChrisF
+1 do you know what the license is?
kenny
@kenny - If you're talking about Ookii I don't know. I can't see anything on the site that specifies a license, but there is one in the download. You can use and redistribute as long as you keep the current attributions etc.
ChrisF
A: 

If you want to host the controls on your own form, use controls from Shell MegaPack.WPF

logicnp