ComponentFactory.Krypton.Toolkit.MenuItemController.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)
        {
            if (!_mouseOver && _menuItem.ItemEnabled)
            {
                _mouseOver = true;
                ViewManager.SetTarget(this, true);
            }
        }