ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupComboBox.OnPreviewKeyDown C# (CSharp) Method

OnPreviewKeyDown() protected method

Raises the PreviewKeyDown event.
protected OnPreviewKeyDown ( PreviewKeyDownEventArgs e ) : void
e System.Windows.Forms.PreviewKeyDownEventArgs An PreviewKeyDownEventArgs containing the event data.
return void
        protected virtual void OnPreviewKeyDown(PreviewKeyDownEventArgs e)
        {
            if (PreviewKeyDown != null)
                PreviewKeyDown(this, e);
        }