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

OnLostFocus() protected method

Raises when 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)
        {
            // Apply the focus overrides
            UpdateFocusOverride(false);

            // Change in focus requires a repaint
            PerformNeedPaint(false);

            base.OnLostFocus(e);
        }
KryptonMonthCalendar