最新下载
热门教程
- 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); } } |
相关文章
- 明日方舟2025新春前瞻直播多久开始-2025新春前瞻直播开启时间介绍 09-18
- 纳萨力克之王护盾队怎么配队-纳萨力克之王护盾队配队攻略 09-18
- 七日世界月之预兆异常物有哪些-月之预兆版本新增异常物一览 09-18
- 王者荣耀2024FMVP皮肤是谁的-2024FMVP皮肤介绍 09-18
- 鸣潮赞妮武器选什么-鸣潮赞妮武器推荐 09-18
- 鸣潮赞妮阵容怎么搭配-鸣潮赞妮阵容搭配方法介绍 09-18