服务器之家

服务器之家 > 正文

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

时间:2021-12-21 14:09     来源/作者:C#教程网

实例如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//选择文件,点击【浏览】,选择文件
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事件一开始添加以下代码:

?
1
folderBrowserDialog1.SelectedPath =“d:\”;

呵呵,是不是很简单呢。

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

相关文章

热门资讯

yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
2021年耽改剧名单 2021要播出的59部耽改剧列表
2021年耽改剧名单 2021要播出的59部耽改剧列表 2021-03-05
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部