Unfortunately, WPF doesn't have a folder browser dialog. You should use the System.Windows.Forms.FolderBrowserDialog class for this. Don't mind that it's in the
System.Windows.Forms
namespace.var dialog = new System.Windows.Forms.FolderBrowserDialog();
System.Windows.Forms.DialogResult result = dialog.ShowDialog();
Комментариев нет:
Отправить комментарий