What is the best practice for a dedicated propertychanged-notification between viewmodels?
In my case, I have a treeview with a lot of parent-items, each having a lot of child-items. i want to notify a parent about changing properties in his child, but without notifying all the other parents.
In similar cases I use the messenger with a token, but it seems that there is no chance to use the raisepropertychanged-method with a token.
Should I better pass a messengerinstance from the parent to his child or is it a better idea still to use the default messenger and to look in every propertychangesmessage-handler if the message is targeted to the current item?