In order to load a Prism Module’s view to a WPF application Region
<ContentControl Name="MainRegion" prism:RegionManager.RegionName="MainRegion"/>
I can use regionManager.RequestNavigate:
this.regionManager.RequestNavigate(RegionNames.MainContentRegion, toViewUri);
Sometimes I need to just remove the Module’s view from the MainRegion (clear everything). If I do it by this.MainRegion.Content = null; then all is okay, except I cannot navigate to the previous view until I navigate to some other one.
How to correctly navigate from a current view without navigating to any other view?
Have you tried either of these?