WPFwiki, wpf, wiki, .net 3.0, windows presentation foundation, FAQ, free resources, solution, development, microsoft Home of the world's largest WPF FAQ
You'll need to add a reference to System.Windows.Forms to your assembly.

   System.Windows.Forms.FolderBrowserDialog fd = new System.Windows.Forms.FolderBrowserDialog();
   System.Windows.Forms.DialogResult result = fd.ShowDialog();
   if(result == System.Windows.Forms.DialogResult.OK)
      my_path = fd.SelectedPath;


Condensed from here.

All content is Copyright ©2007 Xceed Software Inc. unless otherwise indicated. See the Terms of Service. Contributors must read and agree to the Contribution Policy. WPFwiki is brought to you by Xceed, makers of the powerful yet free Xceed DataGrid for WPF.