Microsoft.Windows.Controls.Ribbon.RibbonGalleryItem.OnGotKeyboardFocus C# (CSharp) Method

OnGotKeyboardFocus() protected method

This method is invoked when the IsFocused property changes to true.
protected OnGotKeyboardFocus ( System.Windows.Input.KeyboardFocusChangedEventArgs e ) : void
e System.Windows.Input.KeyboardFocusChangedEventArgs Event arguments.
return void
        protected override void OnGotKeyboardFocus(KeyboardFocusChangedEventArgs e)
        {
            IsHighlighted = true;
            e.Handled = true;

            base.OnGotKeyboardFocus(e);
        }