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

KeyDown() public method

Key has been pressed down.
public KeyDown ( Control c, KeyEventArgs e ) : void
c System.Windows.Forms.Control Reference to the source control instance.
e System.Windows.Forms.KeyEventArgs A KeyEventArgs that contains the event data.
return void
        public void KeyDown(Control c, KeyEventArgs e)
        {
            if (c is VisualPopupQATOverflow)
                KeyDownPopupOverflow(c as VisualPopupQATOverflow, e);
            else
                KeyDownRibbon(e);
        }