BrightIdeasSoftware.ObjectListView.OnMouseLeave C# (CSharp) 메소드

OnMouseLeave() 보호된 메소드

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

            if (!this.Created)
                return;

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