我是靠谱客的博主 神勇母鸡,最近开发中收集的这篇文章主要介绍winform 实现选择文件和选择文件夹对话框的简单实例,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

实例如下:

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

最后

以上就是神勇母鸡为你收集整理的winform 实现选择文件和选择文件夹对话框的简单实例的全部内容,希望文章能够帮你解决winform 实现选择文件和选择文件夹对话框的简单实例所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(109)

评论列表共有 0 条评论

立即
投稿
返回
顶部