ComponentFactory.Krypton.Ribbon.GroupCheckBoxController.MouseEnter C# (CSharp) Méthode

MouseEnter() public méthode

Mouse has entered the view.
public MouseEnter ( Control c ) : void
c System.Windows.Forms.Control Reference to the source control instance.
Résultat void
        public virtual void MouseEnter(Control c)
        {
            // Mouse is over the target
            _mouseOver = true;

            // Update the visual state
            if (!_fixedPressed)
                UpdateTargetState(c);
        }