-
Notifications
You must be signed in to change notification settings - Fork 22
WPF 选择文件夹
L edited this page Dec 14, 2020
·
2 revisions
效果如图
System.Windows.Forms.FolderBrowserDialog dialog = new System.Windows.Forms.FolderBrowserDialog();
System.Windows.Forms.DialogResult result = dialog.ShowDialog();
if (result == System.Windows.Forms.DialogResult.Cancel)
{
return;
}
selectFolrderPathTextBlock.Text = dialog.SelectedPath.Trim();
//引用WindowsAPICodePack
var dialog = new CommonOpenFileDialog();
dialog.IsFolderPicker = true;
CommonFileDialogResult result = dialog.ShowDialog();
if (result == CommonFileDialogResult.Ok)
{
selectFolrderPathTextBlock.Text = dialog.FileName;
}