in the Constructor of your view
publicclass SomeView(){ IEventAggregator _events; public SomeViewConstructor(){ Bootstrapper bootstrapper = Application.Current.Resources["Bootstrapper"] as Bootstrapper; _events = bootstrapper._container.GetInstance<IEventAggregator>(); _events.Subscribe(this); } }