In my Composite WPF application I have an event that is published when the user double-clicks on a control. Modules subscribe to the event and perform an action when necessary.
This event seems to stop working at random. Sometimes when I run the application I can trigger the event with no problems, other times I can only trigger it a few times before the modules stop receiving the event.
When I look in the debugger the CAL EventAggregator
still has the event, but the event has no subscriptions. How can EventAggregator
be losing subscriptions?