ComponentFactory.Krypton.Ribbon.LeftDownButtonController.MouseEnter C# (CSharp) Method

MouseEnter() public method

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

            // Get the form we are inside
            KryptonForm ownerForm = _ribbon.FindKryptonForm();
            _active = ((ownerForm != null) && ownerForm.WindowActive) ||
                      VisualPopupManager.Singleton.IsTracking ||
                      _ribbon.InDesignMode ||
                      (CommonHelper.ActiveFloatingWindow != null);

            if (!_fixedPressed)
                _updateTimer.Start();
        }