private void button1_Click(object sender, EventArgs e)
{
OpenFileDialog newOpen = new OpenFileDialog();
DialogResult result = newOpen.ShowDialog();
this.textBox1.Text = result + "";
}
它只是返回“OK”
我究竟做错了什么?我希望获取文件的 PATH 并将其显示在文本框中。