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

KeyPress() public method

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