I'm currently using Prism for a WPF application, and I'm searching for several things with Prism an dialogs.
The direction I found is the "InteractionRequestTrigger", and there is some example with it.
I found how to open a simple popup, and a custom popup, but there is several things I didn't found:
- Is there a way to open a
OpenFileDialog
orSaveFileDialog
with this interactivity request? - For custom control, I would like to use the
Window
of DevExpress, where/how do I specify this? Also, where should the options of this windows(like the width/height, the style of the window, if it is resizable, ...) - Is there a way to have a ViewModel for each popup? Because I will definitely Commands and a lot of other things to be bound in this popup
- When we do a confirmation/notification, it seems that this doesn't use the MessageBox, but in fact a window? Is there a way to use the MessageBox(to be coherent with the system)?