ComponentFactory.Krypton.Ribbon.ViewRibbonPopupGroupManager.KeyDown C# (CSharp) Method

KeyDown() public method

Perform key down handling.
public KeyDown ( KeyEventArgs e ) : void
e System.Windows.Forms.KeyEventArgs A KeyEventArgs that contains the event data.
return void
        public override void KeyDown(KeyEventArgs e)
        {
            // Tell current view of key event
            if (FocusView != null)
                FocusView.KeyDown(e);
        }