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?
Add a comment |
1 Answer 1
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
Explore related questions
See similar questions with these tags.
- The Overflow Blog
-
- Featured on Meta
-
-
-
Related
Hot Network Questions
- Not Benny but close
- Linear algebraic lemma in Weil II
- Was the second copy of the FAT ever used for anything?
- Is there a term for the sound the orchestra produces when they tune?
- Solving a coupled 2nd order differential equation numerically using NDSolve
- Bash script for manually cleaning up the Traefik access log file and limiting it to a maximum of 50 MB
- Condensation of water droplets on one side of a bottle!
- A novel where a time traveler arrived by mistake at the peak of the Black Death
- Does Russell’s notion of typical ambiguity involve equivocation?
- Anchor localnet won't start, local validator panicked at `UnspecifiedIpAddr`
- Why doesn't leaked confidential information often result in prosecutions for the leaker(s)?
- What was the main point of disagreement between Bergson and Einstein?
- Why is the Gödel numbering taken surjective in Ebbinghaus?
- Will stucco covering on wooden porch posts increase longevity?
- Can you prove equality of two expressions by setting them equal in an equation?
- When you see the whole set, the answer you'll get
- When doing a CASSCF calculation, why do we rotate by 90 degrees rather than by a different amount?
- Continuous payment authority makes whole balance unavailable if not enough funds
- Is there a difference in military court proceedings that would make it easier to convict the "seditious" congress members?
- Why did I freeze to death even though I had cold resistance?
- Binary encoding with short bit sequences
- Why does JavaScript use autoboxing?
- Recharge battery when it hits 50% or 5%?
- What does sectarian mean/imply in this passage?
lang-vb