BaconographyWP8.View.ReplyViewPage.OnNavigatedTo C# (CSharp) Method

OnNavigatedTo() protected method

protected OnNavigatedTo ( System e ) : void
e System
return void
		protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
		{
			if (e.NavigationMode == System.Windows.Navigation.NavigationMode.Back)
			{
				var vm = this.DataContext as ReplyViewModel;
				if (vm != null)
					vm.RefreshUser.Execute(null);
			}
			base.OnNavigatedTo(e);
		}