Skip to content

Instantly share code, notes, and snippets.

@staticfloat
Created April 18, 2014 13:26
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 staticfloat/11044232 to your computer and use it in GitHub Desktop.
Save staticfloat/11044232 to your computer and use it in GitHub Desktop.
Navigation overrides
public partial class MainPage : PhoneApplicationPage
{
// ...
// Navigation to this page just finished
protected override void OnNavigatedTo(NavigationEventArgs e)
{
// Put setup here
// Call this last
base.OnNavigatedTo(e);
}
// Navigation to another page is about to happen
protected override void OnNavigatingFrom(NavigatingCancelEventArgs e)
{
// Put teardown here
// Call this last
base.OnNavigatingFrom(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment