Winform选择目录路径与选择文件路径
Posted luoeast
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Winform选择目录路径与选择文件路径相关的知识,希望对你有一定的参考价值。
https://blog.csdn.net/zaocha321/article/details/52528279
-
using System.Collections.Generic;
-
using System.ComponentModel;
-
using System.Data;
-
using System.Drawing;
-
using System.Text;
-
using System.Windows.Forms;
-
namespace WindowsApplication1 {
-
public partial class SelectFolder: Form {
-
public SelectFolder()
-
{
-
InitializeComponent();
-
}
-
private void btnSelectPath_Click(object sender, EventArgs e) //弹出一个选择目录的对话框
-
{
-
FolderBrowserDialog path = new FolderBrowserDialog();
-
path.ShowDialog();
-
this.txtPath.Text = path.SelectedPath;
-
}
-
private void btnSelectFile_Click(object sender, EventArgs e) //弹出一个选择文件的对话框
-
{
-
OpenFileDialog file = new OpenFileDialog();
-
file.ShowDialog();
-
this.txtFile.Text = file.SafeFileName;
-
}
-
}
以上是关于Winform选择目录路径与选择文件路径的主要内容,如果未能解决你的问题,请参考以下文章
c# winform 如何实现选择另一台电脑上目录下的文件??
C# winform 如何存储用户选择的文件路径 下次启动时读取该路径