ComponentFactory.Krypton.Toolkit.KryptonMonthCalendar.OnGotFocus C# (CSharp) Метод

OnGotFocus() защищенный Метод

Raises when the GotFocus event.
protected OnGotFocus ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
Результат void
        protected override void OnGotFocus(EventArgs e)
        {
            // Ensure there is a defined focus day
            SetFocusDay();

            // Apply the focus overrides
            UpdateFocusOverride(true);

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

            base.OnGotFocus(e);
        }
KryptonMonthCalendar