Does anyone have any examples of showing a window dialog using MVVM (Prism)? - for example a configuration settings window when a command is executed.
All of the examples I've seen use the mediator pattern which is fine, but they also all have a reference to the view in the view model which is not ideal (we're using DataTemplates)
Thanks
You might be interested in the following sample application:
http://compositeextensions.codeplex.com
It uses Prism2 with the PresentationModel (aka MVVM) pattern. The sample application contains a modal dialog.