打开文件对话框,并使用WPF控件和C#选择一个文件打开文件对话框,并使用WPF控件和C#选择一个文件

2019-05-13 15:38发布

我有一个TextBox名为textbox1和一个Button命名为button1 。 当我点击button1我想浏览我的文件只搜索图像文件(JPG类型,PNG,BMP ......)。 当我选择一个图像文件,并在文件对话框我想在要写入的文件目录点击确定textbox1.text是这样的:

textbox1.Text = "C:\myfolder\myimage.jpg"

Answer 1:

类似的事情应该是你所需要的

private void button1_Click(object sender, RoutedEventArgs e)
{
    // 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)|*.gif"; 


    // Display OpenFileDialog by calling ShowDialog method 
    Nullable<bool> result = dlg.ShowDialog();


    // Get the selected file name and display in a TextBox 
    if (result == true)
    {
        // Open document 
        string filename = dlg.FileName;
        textBox1.Text = filename;
    }
}


Answer 2:

var ofd = new Microsoft.Win32.OpenFileDialog() {Filter = "JPEG Files (*.jpeg)|*.jpeg|PNG Files (*.png)|*.png|JPG Files (*.jpg)|*.jpg|GIF Files (*.gif)|*.gif"}; 
var result = ofd.ShowDialog();
if (result == false) return;
textBox1.Text = ofd.FileName;


文章来源: Open file dialog and select a file using WPF controls and C#