// Microsoft.Win32.OpenFileDialog using Microsoft.Win32; privatevoidButtonBase_OnClick(object sender, RoutedEventArgs e) { var openFileDialog = new OpenFileDialog(); if (openFileDialog.ShowDialog() == true) { // do something with the filename MessageBox.Show(openFileDialog.FileName); } }
You can also specify a filter, which will show only certain type of files, like this:
1 2 3 4
var openFileDialog = new OpenFileDialog { Filter = "Text files (*.txt)|*.txt|All files (*.*)|*.*", };
// Process save file dialog box results if (dlg.ShowDialog() == true) { return dlg.FileName; } else { returnnull; } }
通用获取文件夹(Ookii)
Another typical case is when you need the user to select a folder. This time a File Dialog won’t do the job and you’ll need something different. If you’ve ever used WinForms you’d probably know FolderBrowserDialog class. Unfortunately this is not available in WPF by default, but don’t worry, you can still solve this in at least 3 different ways:
Add the System.Windows.Forms DLL and use the FolderBrowserDialog class
The one I use the most is the Ookii.Dialogs one which looks easier and simpler to me. Just use this snippet and you’re ready to go:
1 2 3 4 5 6 7 8 9
privatevoidButtonBase2_OnClick(object sender, RoutedEventArgs e) { var ookiiDialog = new VistaFolderBrowserDialog(); if (ookiiDialog.ShowDialog() == DialogResult.OK) { // do something with the folder path MessageBox.Show(ookiiDialog.SelectedPath); } }