在进行WPF程序开发的过程中,经常会使用到选择文件对话框和保存文件对话框,但WPF中没有专门负责的控件.
实现此功能的方法有两种.
第一种是 利用Microsoft.Win32.OpenFileDialog 不过这种方法中
第二种是 System.Windows.Forms.OpenFileDialog 这是Winform程序中使用的.所以需要在项目中引用对应库
// Create OpenFileDialog
Microsoft.Win32.OpenFileDialog dlg = new Microsoft.Win32.OpenFileDialog();
// Set filter for file extension and default file extension
dlg.DefaultExt = ".png";
dlg.Filter = "JPEG Files (*.jpeg)|*.jpeg|PNG Files (*.png)|*.png|JPG Files (*.jpg)|*.jpg|GIF Files (*.gif);
// Display OpenFileDialog by calling ShowDialog method
if (dlg.ShowDialog().Value)
{
// Get the selected file name and display in a TextBox
this.txtSavePath.Text = dlg.FileName;
dlg = null;
}