ComponentFactory.Krypton.Toolkit.KryptonCheckButton.OnLostFocus C# (CSharp) Method

OnLostFocus() protected method

Raises the LostFocus event.
protected OnLostFocus ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
return void
        protected override void OnLostFocus(EventArgs e)
        {
            if (!ViewDrawButton.IsFixed)
            {
                // Apply the focus overrides
                _overrideCheckedFocus.Apply = false;
                _overrideCheckedTracking.Apply = false;
                _overrideCheckedPressed.Apply = false;
            }

            // Let base class fire standard event
            base.OnLostFocus(e);
        }