i have read the other question here on StackOverflow. I understand how to create messages between ViewModels/Objects. But I dont get how can i actually display a dialog. Can I see some code samples implementing this?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

using a mediator or messenger to communicate between viewmodels has nothing to do with the mvvm dialog problem. here is the way i show dialogs.

link|improve this answer
so i just use a service to open dialogs eg. SaveFileDialog, OpenFileDialog or MessageBoxes? – Jiew Meng Oct 7 '10 at 3:38
correct :) the link i posted is for dialogs in general. for dialogs like SaveFileDialog, OpenFileDialog or MessageBoxes i use concrete services like WpfMessageboxService and so on. take a look at the cinch project cinch.codeplex.com, there i get some really good stuff for mvvm. – blindmeis Oct 7 '10 at 6:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.