I'm new to WPF Prism, my problem is this.
I have a region and I register a view like this
_container.RegisterType(typeof(Object), typeof(MgpOptions),typeof(MgpOptions).FullName); _container.RegisterType(typeof(Object), typeof(SgpOptions), typeof(SgpOptions).FullName);
Then I navigate to it like this
_regionManager.Regions[RegionNames.AppBarRegion].NavigationService.RequestNavigate(typeof(MgpOptions).FullName);`
On sum button click event I navigate to SgOptions View like this
_regionManager.Regions[RegionNames.AppBarRegion].RequestNavigate(typeof(SgpOptions).FullName);
My problem is when the 3rd step completed both views appear in the region I just want to show one View at a time.