ArcGISWindowsPhoneSDK.EditorTracking.OnBackKeyPress C# (CSharp) Méthode

OnBackKeyPress() protected méthode

protected OnBackKeyPress ( System e ) : void
e System
Résultat void
        protected override void OnBackKeyPress(System.ComponentModel.CancelEventArgs e)
        {
            if (FeatureInfoPage.IsOpen)
            {
                FeatureInfoPage.IsOpen = false;
                ApplicationBar.IsVisible = true;

                e.Cancel = true;
            }
        }