Skip to content

Instantly share code, notes, and snippets.

@jamesmcroft
Last active March 5, 2016 09:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesmcroft/bf5fcaafd1036c969891 to your computer and use it in GitHub Desktop.
Save jamesmcroft/bf5fcaafd1036c969891 to your computer and use it in GitHub Desktop.
Windows.UI.Core.SystemNavigationManager.GetForCurrentView().AppViewBackButtonVisibility = AppViewBackButtonVisibility.Visible;
Windows.UI.Core.SystemNavigationManager.GetForCurrentView().BackRequested += this.OnBackRequested;
...
private void OnBackRequested(object sender, BackRequestedEventArgs e)
{
// Handle frame navigation
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment