Using the MVVM structure, i wish to redirect my View to a new viewpage from my ViewModel. NavigationService seems to be able to accomplish this. By calling the NavigationService.Navigate to a new URI..
My problem is that i DON'T have NavigationService in Windows Universal App. Is there a way to implement it?
I've been using: this.Frame.Navigate to navigate between views, but I can only use this on the codebehind of my view :(
How can i accomplish navigating my view from my viewmodel?