I have a project implementing a Mediator pattern similar to what is found in this question: Sql, Wpf, Xaml, C#, Binding data, Dynamic resource, accessing to non-static data, Obtaining a Reference to an Object
This seems to work fine when the Register() function is called in the parent view then the SendMessage() function in a child view. The data can easily be obtained that is acquired in the child and then the parent can process it through the Mediator.
However I need to do the opposite. Take data acquired in the parent and pass it to the child to be processed. Can the Mediator be used for this task?
I have tried various methods of placing a call to the Register() function in the child with a SendMessage() in the parent, but since the Register() initializes the collection the records seems to be getting lost.
Am I missing something? Is there a better way?
I had the same problem... i know its not a good Solution but i solved it like this....
In Your ChildView
In your ParentView
Here we are calling the parentViewModel to send the required data when the ChildViewModel dosent find the Data it requires....