I am developing a WPF application and I have some problems to communicate one view model with another.
I have:
- MainViewModel
- ChildViewModel1
- ChildViewModel2
Every time a property changes in MainViewModel, ChildViewModel1 and ChildViewModel2 should get notified.
Can anyone suggest a workaround?
EDIT: I am thinking in a solution descrided MVVM Light (http://simplemvvmtoolkit.codeplex.com/SourceControl/changeset/view/23821#313594.), that is implementing a message bus. Is it the right approach?