I am working on an app for WP 8.1, it uses Windows Runtime and not Silverlight. Because of this I have no access to the NavigationService
class.
I have tried to manually implement a Back Stack by pushing the current page type to the stack in the OnNavigatedTo()
method with no luck.
All I need to do is find a way to manage navigation history so that when a user hits the hardware back button they are taken to the last page in the app they were on, until the user is on the first page where hitting back would exit the application.
Can someone point me in the right direction here?