3

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?

1 Answer 1

3

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

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.