ComponentFactory.Krypton.Toolkit.KryptonCheckedListBox.OnMouseLeave C# (CSharp) Method

OnMouseLeave() protected method

Raises the MouseLeave event.
protected OnMouseLeave ( EventArgs e ) : void
e System.EventArgs An EventArgs that contains the event data.
return void
        protected override void OnMouseLeave(EventArgs e)
        {
            _mouseOver = false;
            PerformNeedPaint(true);
            _listBox.Invalidate();
            base.OnMouseLeave(e);
        }
KryptonCheckedListBox