This question is locked. New answers and comments are not allowed.
We are trying to select a folder path within a dialog from a coded step for a WPF application. The dialog is generated from the following code:
Any help would be appreciated!
System.Windows.Forms.FolderBrowserDialog dlg = new System.Windows.Forms.FolderBrowserDialog();dlg.ShowNewFolderButton = false;dlg.SelectedPath = GetDefaultDirectory();dlg.ShowDialog()Any help would be appreciated!