As stated by Microsoft, it’s not possible to programatically navigate from the main page. I have a EULA page that I need to show if the user is using the app for the first time. My plan was to determine on the main page if the app has been used before. If not, I had planned to navigate to the EULA page, but this is not possible. How can I get around this navigation limitation?
As stated by Microsoft , it’s not possible to programatically navigate from the main
Share
It should be possible to navigate from the main page easily using:
Probably best to put this code in OnNavigatedTo of your main page or even later in the page cycle using
Dispatcher.BeginInvoke(...). Putting it before that (i.e. in the constructor or Loaded) may not work.