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