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
- Difference between VOR approach (with DME required) and VOR DME approach?
- Shotguns In Space
- Why doesn't leaked confidential information often result in prosecutions for the leaker(s)?
- Fundamental class from smooth atlas
- What does sectarian mean/imply in this passage?
- Was the second copy of the FAT ever used for anything?
- How to close up where outdoor light was
- If photons are the carriers of the electromagnetic force, why isn't electricity made of photons?
- If a creature with legendary actions is polymorphed, does it lose its legendary actions?
- Should wires stripped too small be redone?
- What term describes a person who always remains ill?
- Does lighting weapons on fire do anything?
- Do features that increase Speed apply retroactively when gaining a new special Speed?
- Not detained but not free to go
- Is it a problem if I don’t have a recommendation letter from my thesis advisor due to retirement?
- Dual nationality citizen registering for EES in Switzerland
- Detect if any ping succeeds
- News API in Python
- Algebra isomorphic to its complex conjugate
- Condensation of water droplets on one side of a bottle!
- Calculating two highest maximum values of field in QGIS
- Magic item feedback: Karmic Ring
- When doing a CASSCF calculation, why do we rotate by 90 degrees rather than by a different amount?
- Multiple-output flyback converter in DCM mode?
lang-vb