I am builng an M-V-VM application with Dynamic Loading of modules at runtime.
Each of these Modules has a default view which individulally they show on the selected region when I go
_regionManager.Regions["BottomMenuRegion"].Add(
Container.Resolve<AdminModuleView>(), "AdminView", true);
However, When the Next Module loads it overwrtites the previous loaded view.. How can I load more than one view into a region so that it creates a "Menu" displaying the default view? e.g
<ItemsControl cal:RegionManger.RegionName="BottomMenuRegion" />
looks like
Module1View Module2View Module3View Module4View etc
Thanking you in advance.