c# - Replacing OpenFileDialog / SaveFileDialog in .net -
I am working on that, in this application, I try to use SaveFileDialog and OpenFileDialog for their customary purposes Opening and opening the file.)
However, the application can not support modal form / dialog without crashing because there are many time-sensitive things on the UI owner's thread.
The rewrite is not practical in the immediate working time to transfer those characteristics from the UI-owned thread. To complete the feature I'm working on, I need an option for two file dialogs, preferably a control that can remain as a non-model.
Is there anything there, can I use it to block my UI-sharing thread?
I know that is the only current option, a commercial product. They have a set of dialogues that have the option of being modeled (or embedded directly in a Windows form instead of a separate window)
However, I really think about trying to move sensitive time to my time, in a different thread, instead of having a modelless dialog, users will be confused because it is a file Communication will not behave in the way it behaves. There are other possible consequences of being a non-blocking UI.
Comments
Post a Comment