BaconographyWP8Core.View.LinkedSelfTextPageView.OnBackKeyPress C# (CSharp) Method

OnBackKeyPress() protected method

protected OnBackKeyPress ( System e ) : void
e System
return void
        protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
        {
            if (ContentFocused && !ServiceLocator.Current.GetInstance<ISettingsService>().OnlyFlipViewImages)
            {
                e.Cancel = true;
                DefocusContent();
            }
            else
                base.OnBackKeyPress(e);
        }