Reputation: 45921
I'm developing a Windows Phone 7 app.
I want to do something after doing this:
NavigationService.Navigate(new Uri(destination, UriKind.Relative));
Is there any event thrown when a page has navigated to another page?
Upvotes: 1
Views: 159
Reputation: 6882
Maybe this helps...
protected override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e)
Upvotes: 1