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

OnGotFocus() protected method

Raises the GotFocus event.
protected OnGotFocus ( EventArgs e ) : void
e System.EventArgs An EventArgs containing the event data.
return void
        protected virtual void OnGotFocus(EventArgs e)
        {
            if (GotFocus != null)
                GotFocus(this, e);
        }