0

[RESOLVED] Need to add this Line :

SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = AppViewBackButtonVisibility.Visible;

[QUESTION] I'm looking for a way to add a back navigate button at the top left corner of a windows 10 universal app running on PC. Why this is because on tablet and phone, there is a back button enable on windows, but when running the app on PC mode, there is no way to go back to last frame. Does anyone have a solution for this that looks like the button on the windows store app for example?

enter image description here

Franklin Chen - MSFT
  • 4,845
  • 2
  • 17
  • 28
Sven Borden
  • 1,070
  • 1
  • 13
  • 29

1 Answers1

2

I find a great example of the usage of the back-button : here

You need this code :

SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = AppViewBackButtonVisibility.Visible;
Xavier W.
  • 1,270
  • 3
  • 21
  • 47