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

KeyDown() public method

Perform key down handling.
public KeyDown ( KeyEventArgs e ) : void
e 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);
            else
            {
                // Pass onto the ribbon so it can transfer focus to next
                _ribbon.MinimizedKeyDown(e.KeyData);
            }
        }