BrightIdeasSoftware.ObjectListView.OnMouseLeave C# (CSharp) Method

OnMouseLeave() protected method

When the mouse leaves the control, remove any hot item highlighting
protected OnMouseLeave ( EventArgs e ) : void
e EventArgs
return void
        protected override void OnMouseLeave(EventArgs e)
        {
            base.OnMouseLeave(e);

            if (!this.Created)
                return;

            this.UpdateHotItem(new Point(-1, -1));
        }
ObjectListView