I have a simple demo application which loads two modules (ModuleA and ModuleB). In each module initialization I use view discovery approach to display corresponding view. All modules are loaded correctly:

base.RegionManager.RegisterViewWithRegion(ConstantRegion.TopRegion, typeof(ModuleAView));

But if I use view injection approach I don't see anything:

IRegion region = base.RegionManager.Regions[ConstantRegion.TopRegion];
var view = base.Container.Resolve<ModuleAView>();
region.Add(view);
region.Activate(view);

Is there something what I've missed?

EDIT: My implementation of custom bootstrapper was incorrect. Now it works great.

link|improve this question
Unless you implement IActiveAware, region.Activate does nothing. – Baboon Dec 30 '11 at 18:31
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.