Question

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?

Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top