I\'m working on implementing an event aggregation with Prism. I have a few modules, and I want each of them to subscribe to events that tells them when they are requested. I sta
The Prism Event Aggregator uses Weak References to link to the events. This is to prevent memory leaks from event handlers.
Once a module initializer has been run it's disposed of, so your event handler is being destroyed before the event is being fired. You can tell Prism to keep the event handler around by using an overload of Subscribe.
evnt.Subscribe(MyModuleRequested, true);
As a pattern, I tend to put any event subscribers in a separate class, and call that class from the modules Initialize method. That way the events stay alive but separate while the module is still destroyed.