Microsoft.Phone.Applications.UnitConverter.View.CategorySelection.OnNavigatedFrom C# (CSharp) Method

OnNavigatedFrom() protected method

Called when we are leaving the page. We clear the constructorCalled flag so that we will be able to determine if we were tomb stoned or not if we receive an activation event
protected OnNavigatedFrom ( System.Windows.Navigation.NavigationEventArgs e ) : void
e System.Windows.Navigation.NavigationEventArgs Event Data
return void
        protected override void OnNavigatedFrom(NavigationEventArgs e)
        {
            base.OnNavigatedFrom(e);
            this.viewModel.SyncStateToAppState(this.viewModel.SelectedDataIndex);
            ApplicationState.AddAppObjects(true);
        }