How can I implement an openfiledialog that is capable of multi-selection? Do I need an additional library file or is it possible using WPF-Control OpenFileDialog?
I think there is an OpenFileDialog property, which is a MultiSelect.
So you can do it.
OpenFileDialog dlg = new OpenFileDialog (); dlg.MultiSelect = true; dlg.Show ();
Source: https://habr.com/ru/post/1732321/More articles:Java exception exception - javaHow to set up one-time email aliases (Craigslist style)? - c #How to extract images from pdf in c #? - c #Databases and Java - javaUpdating WPF controls at run time - multithreadingWarning: unable to change header information - headers already sent - phpIn Solr, How to request a single field for a single set of values in a multi-valued field - parallel-processingCreating WCF DataContracts dynamically from code - dynamicФайл занят. Я не могу удалить его - c#Free nhibernate mapping problem: many of many join additional data - many-to-manyAll Articles