c#如何通过按钮,浏览文件。打开按钮,出现文件的资源选择框
2个回答
展开全部
/先做一个OpenFileDialog控件假设名字叫openFileDialog1
//再做一个Button控件假设名字叫button1
//设置button1的click事件
private void button1_Click(object sender, EventArgs e)
{
this.openFileDialog1.ShowDialog();
//选择文件后,用openFileDialog1的FileName属性获取文件的绝对路径
this.label1.Text = this.openFileDialog1.FileName;
}
//再做一个Button控件假设名字叫button1
//设置button1的click事件
private void button1_Click(object sender, EventArgs e)
{
this.openFileDialog1.ShowDialog();
//选择文件后,用openFileDialog1的FileName属性获取文件的绝对路径
this.label1.Text = this.openFileDialog1.FileName;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询