I’ve been using the Caliburn.Micro framework lately. I have a ShellView and two screens, we’ll call them ScreenOne and ScreenTwo. I am trying to pass data from ScreenOne to ScreenTwo. I have looked extensively on the web and I can’t believe this is so hard to find. Does anyone know how to do this?
I’ve been using the Caliburn.Micro framework lately. I have a ShellView and two screens,
Share
One alternative could be to use the Event Aggregator and use a publish/subscribe technique to communicate between the screens. In the event aggregator tutorial there is an example where two view models both publish their own events and subscribe to the other view model’s events. The example is further elaborated in one source code sample, HelloEventAggregator.