欢迎来到入门教程网!

C#教程

当前位置:主页 > 软件编程 > C#教程 >

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

来源:本站原创|时间:2020-01-10|栏目:C#教程|点击:

实例如下:

//选择文件,点击【浏览】,选择文件 
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 实现选择文件和选择文件夹对话框的简单实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

上一篇:c# 动态加载dll文件,并实现调用其中的简单方法

栏    目:C#教程

下一篇:如何使用C#在PDF文件添加图片印章

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

本文地址:https://www.xiuzhanwang.com/a1/C_jiaocheng/5970.html

网页制作CMS教程网络编程软件编程脚本语言数据库服务器

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:835971066 | 邮箱:835971066#qq.com(#换成@)

Copyright © 2002-2020 脚本教程网 版权所有