最新下载
热门教程
- 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); } } |
相关文章
- 仙剑世界雾北区易家故院解密宝箱快速获取指南 06-15
- 逆水寒手游废村宝箱密码一览攻略 06-15
- CZ:我沒喊單!Aster市佔飆至20%,和Hyperliquid搶奪Perp DEX頂位 06-15
- 蛋仔派对精灵莉斯尔盲盒概率攻略 06-15
- 崩坏3时雨绮罗蓄力流刻印推荐优势分析 06-15
- OM币怎么操作?2025OKX交易所新手投资 06-15