How to Simply Implement the Hierarchical EventAggregator
Last Updated on Tuesday, 29 May 2012 12:35 Written by Andrew Ivanov Friday, 1 June 2012 12:00
Sometimes the Prism Application may need the hierarchical event aggregator. In this post, I want to share my implementation of HierarchicEventAggregator.
IHierarchicEventAggregator.cs
HierarchicEventAggregator.cs
1. To create the instances, do the following:
IHierarchicEventAggregator root = new HierarchicEventAggregator();
IHierarchicEventAggregator workspace1 = root.CreateChildHierarchicEventAggregator();
IHierarchicEventAggregator workspace2 = root.CreateChildHierarchicEventAggregator();
Tags: aggregator, event, EventAggregator, Hierarchical, how to, implement, simply | Posted under 3rd Party Software, Programming/Coding | No Comments

Recent Comments