Is it possible to create/have a non-modal .net OpenFileDialog I have a UI element in the main dialog which always need to be available for the user to press.
|
|
|
|
|
|
|
No, OpenFileDialog and SaveFileDialog are both derived from FileDialog, which is inherently modal, so (as far as I know) there's no way of creating a non-modal version of either of them. |
||
|
|
|
You can create a thread and have the thread host the OpenFileDialog. Example code is lacking any kind of synchronization but it works.
With this code you could add something to fire an event in your UI thread (be careful with invoking!) to know when they're done. You can access the result of the dialog by
from your UI thread. |
|||
|
|
