开发者

OpenFileDialog for selecting more than 1 file with WPF

开发者 https://www.devze.com 2022-12-19 17:13 出处:网络
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 OpenFil开发者_如何学CeDialog?I think there is a prope

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 OpenFil开发者_如何学CeDialog?


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();

0

精彩评论

暂无评论...
验证码 换一张
取 消