111,126
社区成员
发帖
与我相关
我的任务
分享
private void button1_Click(object sender, EventArgs e)
{
if (openFileDialog1.ShowDialog()== DialogResult.OK)
textBox1.Text = openFileDialog1.FileName;
}
private void button4_Click(object sender, EventArgs e)
{
openFileDialog1.ShowDialog();
textBox1.Text = openFileDialog1.FileName;
}