ComponentFactory.Krypton.Ribbon.ViewDrawRibbonGroupRichTextBox.OnMouseLeaveControl C# (CSharp) Méthode

OnMouseLeaveControl() private méthode

private OnMouseLeaveControl ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Résultat 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;
            }
        }