打开文件对话框不起作用

时间:2013-12-27 10:43:36

标签: c# openfiledialog

我正在尝试添加过滤器OpenFileDialog控件,但在使用过滤器之后。没有文件只是文件夹。没有过滤器一切都很好。我该怎么办?

  private void button1_Click(object sender, EventArgs e) {
       OpenFileDialog fileChooser = new OpenFileDialog();
       fileChooser.Filter = " Image File (*.jpeg)|(*.jpeg)|  All Files  (*.*) |(*.*)";
       if (fileChooser.ShowDialog() == DialogResult.OK) {
            pictureBox1.ImageLocation = fileChooser.FileName;
       }
  }

1 个答案:

答案 0 :(得分:7)

在定义文件扩展名时不要使用括号。

fileChooser.Filter = "Image File (*.jpg)|*.jpg;*.jpeg|All Files|*.*";