加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

winform 实现选择文件和选择文件夹对话框的简单实例

发布时间:2020-12-15 06:11:01 所属栏目:百科 来源:网络整理
导读:实例如下: //选择文件,点击【浏览】,选择文件 private void button1_Click(object sender,EventArgs e) { OpenFileDialog openFileDialog1 = new OpenFileDialog(); //显示选择文件对话框 openFileDialog1.InitialDirectory = "c:"; openFileDialog1.Fi

实例如下:

//选择文件,点击【浏览】,选择文件 
private void button1_Click(object sender,EventArgs e) 
{ 
  OpenFileDialog openFileDialog1 = new OpenFileDialog();   //显示选择文件对话框 
  openFileDialog1.InitialDirectory = "c:"; 
  openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*"; 
  openFileDialog1.FilterIndex = 2; 
  openFileDialog1.RestoreDirectory = true; 
 
  if (openFileDialog1.ShowDialog() == DialogResult.OK) 
  { 
    this.textBox1.Text = openFileDialog1.FileName;     //显示文件路径 
  } 
} 
 
  
 
//选择文件夹:点击【浏览】,选择文件夹 
private void button4_Click(object sender,EventArgs e) 
{ 
  if (this.folderBrowserDialog1.ShowDialog() == DialogResult.OK) 
  { 
    if (this.folderBrowserDialog1.SelectedPath.Trim() != "") 
      this.textBox4.Text = this.folderBrowserDialog1.SelectedPath.Trim(); 
  } 
}

选择文件夹对话框,如果想默认一个文件夹,在click事件一开始添加以下代码:

folderBrowserDialog1.SelectedPath =“d:”; 

呵呵,是不是很简单呢。

以上这篇winform 实现选择文件和选择文件夹对话框的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程小技巧。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读