I'm working with an UWP project that is using Prism to apply the MVVM pattern. I have a basic Frame like this:
<Frame x:Name="SplitViewFrame" ></Frame>
With code behind, we can easily navigate this Frame:
SplitViewFrame.Navigate(typeof(MyPage),null);
But with MVVM we have to do it in ViewModel and I have no way to manage it. Does anyone know how to Navigate Frame in ViewModel with Prism?