Cannot get wpf project to reconise FolderBrowserDialog
using System.Windows.Forms.Integration;
using System.Windows.Forms;
private void Button_Click_1(object sender, RoutedEventArgs e)
{
FolderBrowserDialog browse = new FolderBrowserDialog();
}
type or name space FolderBrowserDialog could not be found???
You will need to add reference to the assembly System.Windows.Forms before you can use the dialog in wpf. (Right click on project and select add reference)