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.