When trying to follow the simple method of navigating "back" a level in a WPF MVVMCross app as described in the MVVMCross wiki (https://github.com/MvvmCross/MvvmCross/wiki/ViewModel--to-ViewModel-navigation#how-to-move-back), it doesn't work.
I get the following message in the debug window when I call "Close(this)" from the ViewModel:
mvx: Diagnostic: 257.78 Requesting presentation change
mvx: Warning: 257.78 Hint ignored MvxClosePresentationHint
I then set out to manually close the view by extending the MvxSimpleWpfViewPresenter, but couldn't figure out how to get a reference to the NavigationService using the ContentControl (MainWindow).
Regardless, it should work without this according to the Wiki.