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

KeyUp() public method

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