最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
C#中OpenFileDialog 与FolderBrowserDialog用法实例
时间:2022-06-25 08:34:20 编辑:袖梨 来源:一聚教程网
| 代码如下 | 复制代码 |
| //选择 private void btnUser_Click(object sender, EventArgs e) { //选择文件 OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Multiselect = true; //文件格式 openFileDialog.Filter = "所有文件|*.*"; //还原当前目录 openFileDialog.RestoreDirectory = true; //默认的文件格式 openFileDialog.FilterIndex = 1; if (openFileDialog.ShowDialog() == DialogResult.OK) { string path = openFileDialog.FileName; } //选择文件夹 FolderBrowserDialog dialog = new FolderBrowserDialog(); dialog.Description = "请选择文件路径"; if (dialog.ShowDialog() == DialogResult.OK) { string foldPath = dialog.SelectedPath; MessageBox.Show("已选择文件夹:" + foldPath, "选择文件夹提示", MessageBoxButtons.OK, MessageBoxIcon.Information); } } |
|
相关文章
- iCloud网页版登录入口在哪 04-01
- 爱奇艺缓存视频存储位置在哪 04-01
- 国内首个OpenClaw中文版Molili 1.0.7版本上线了吗 04-01
- 小红书app官网登录入口在哪 04-01
- 如何用WPS制作创意图表 04-01
- PDF怎么添加页码 04-01