ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.OnMouseLeave C# (CSharp) Метод

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

Raises the MouseLeave event.
protected OnMouseLeave ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
Результат void
        protected override void OnMouseLeave(EventArgs e)
        {
            _mouseOver = false;
            PerformNeedPaint(true);
            _listBox.Invalidate();
            base.OnMouseLeave(e);
        }
KryptonCheckedListBox