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

OnLostFocus() protected method

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