I am developing a WPF MVVM Light application, I want to display some message boxes/dialog boxes or there are some other scenarios where I want my View model to communicate with its view or raise some event on its respective view.
How could I achieve that?
See Messenger class of MVVM Light. It should even have sample by default when you downloa MVVM light. It’s something like Messenger.Default.Send(new YourMessageClass()) and you can register listener on View side.