ComponentFactory.Krypton.Ribbon.RecentDocController.MouseLeave C# (CSharp) 메소드

MouseLeave() 공개 메소드

Mouse has left the view.
public MouseLeave ( Control c, ViewBase next ) : void
c System.Windows.Forms.Control Reference to the source control instance.
next ViewBase Reference to view that is next to have the mouse.
리턴 void
        public virtual void MouseLeave(Control c, ViewBase next)
        {
            // Only if mouse is leaving all the children monitored by controller.
            if (_mouseOver && !_menuItem.ContainsRecurse(next))
            {
                _mouseOver = false;
                ViewManager.ClearTarget(this);
            }
        }