OpenFileDialog 用于使用 WPF 选择多个文件
如何实现能够进行多重选择的 openfiledialog?我是否需要额外的库,或者是否也可以使用 WPF-Control OpenFileDialog?
How can I implement an openfiledialog, which is able to do multiselecting? Do I need an extra libraray or is it also possible with the WPF-Control OpenFileDialog?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 OpenFileDialog 有一个属性,即 MultiSelect。
所以你可以这样做。
OpenFileDialog dlg = new OpenFileDialog();
dlg.MultiSelect = true;
dlg.Show();
I think there is a property of OpenFileDialog which is MultiSelect.
So you may do this.
OpenFileDialog dlg = new OpenFileDialog();
dlg.MultiSelect = true;
dlg.Show();