5 implementations of IsHoveredWithMouse
System.Windows.Forms (5)
System\Windows\Forms\Control.cs (1)
12690bool IKeyboardToolTip.IsHoveredWithMouse() => IsHoveredWithMouse();
System\Windows\Forms\Controls\DataGridView\DataGridViewCell.cs (1)
333bool IKeyboardToolTip.IsHoveredWithMouse() => false;
System\Windows\Forms\Controls\ListView\ListViewItem.IKeyboardToolTip.cs (1)
70bool IKeyboardToolTip.IsHoveredWithMouse() => _listView?.AccessibilityObject.Bounds.Contains(Control.MousePosition) ?? false;
System\Windows\Forms\Controls\ToolStrips\ToolStripItem.cs (1)
3595bool IKeyboardToolTip.IsHoveredWithMouse()
System\Windows\Forms\Controls\TreeView\TreeNode.IKeyboardToolTip.cs (1)
45bool IKeyboardToolTip.IsHoveredWithMouse() => TreeView?.AccessibilityObject.Bounds.Contains(Control.MousePosition) ?? false;
1 reference to IsHoveredWithMouse
System.Windows.Forms (1)
System\Windows\Forms\ToolTip\KeyboardToolTipStateMachine.cs (1)
206if (!_currentTool.IsHoveredWithMouse())