I am creating an MV-VM application with dynamic loading of modules at runtime.
Each of these modules has a default view, which individually they show in the selected area when I go
_regionManager.Regions["BottomMenuRegion"].Add( Container.Resolve<AdminModuleView>(), "AdminView", true);
However, when the next module loads, it overwrites the previous loaded view. How to load more than one view into an area to create a βMenuβ displaying the default view? eg
<ItemsControl cal:RegionManger.RegionName="BottomMenuRegion" />
looks like
Module1View Module2View Module3View Module4View, etc.
Thank you in advance.
Traci
source share