I\'m trying to use the FolderBrowserDialog from my WPF application - nothing fancy. I don\'t much care that it has the Windows Forms look to it.
However, when I call
Here is a simple method.
System.Windows.Forms.NativeWindow winForm; public MainWindow() { winForm = new System.Windows.Forms.NativeWindow(); winForm.AssignHandle(new WindowInteropHelper(this).Handle); ... } public showDialog() { dlgFolderBrowser.ShowDialog(winForm); }