BaconographyWP8.View.AboutUserView.OnNavigatedFrom C# (CSharp) Метод

OnNavigatedFrom() защищенный Метод

protected OnNavigatedFrom ( System.Windows.Navigation.NavigationEventArgs e ) : void
e System.Windows.Navigation.NavigationEventArgs
Результат void
		protected override void OnNavigatedFrom(NavigationEventArgs e)
		{
			if (e.NavigationMode != NavigationMode.Back)
			{

			}
			else
			{
				this.State["SelectedUserAccountMessage"] = _selected;
				Content = null;
				if (DataContext != null)
					((AboutUserViewModel)DataContext).Cleanup();
			}
		}
	}