ComponentFactory.Krypton.Ribbon.ViewDrawRibbonGroupDateTimePicker.OnMouseLeaveControl C# (CSharp) Method

OnMouseLeaveControl() private method

private OnMouseLeaveControl ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void OnMouseLeaveControl(object sender, EventArgs e)
        {
            // If we have a cached group we made active
            if (_activeGroup != null)
            {
                _activeGroup.Tracking = false;
                _needPaint(this, new NeedLayoutEventArgs(false, _activeGroup.ClientRectangle));
                _activeGroup = null;
            }
        }