rakete
rakete

Reputation: 3051

OpenFileDialog for selecting more than 1 file with WPF

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?

Upvotes: 3

Views: 1344

Answers (1)

lionheart
lionheart

Reputation: 433

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

Upvotes: 3

Related Questions