13 references to Hand
System.Windows.Forms (6)
System\Windows\Forms\Controls\DataGridView\DataGridViewLinkCell.cs (2)
804
if (DataGridView.Cursor != Cursors.
Hand
)
806
DataGridView.Cursor = Cursors.
Hand
;
System\Windows\Forms\Controls\Labels\LinkLabel.cs (1)
930
OverrideCursor = Cursors.
Hand
;
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
3457
Cursor.Current = Cursors.
Hand
;
System\Windows\Forms\Controls\ToolStrips\ToolStripLabel.cs (1)
260
parent.Cursor = Cursors.
Hand
;
System\Windows\Forms\Input\Cursors.cs (1)
54
public static Cursor Hand => s_hand ??= new(PInvoke.IDC_HAND, nameof(
Hand
));
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\Behavior\ToolStripPanelSelectionGlyph.cs (1)
213
return _glyphBounds != Rectangle.Empty && baseParentBounds.Contains(_glyphBounds) && _glyphBounds.Contains(p) ? Cursors.
Hand
: null;
System.Windows.Forms.Tests (4)
System\Windows\Forms\CursorConverterTests.cs (1)
200
Assert.Contains(Cursors.
Hand
, values);
System\Windows\Forms\CursorsTests.cs (1)
21
yield return new object[] { I(() => Cursors.
Hand
) };
ToolStripContainerTests.cs (2)
169
var value = Cursors.
Hand
;
184
_toolStripContainer.Cursor = Cursors.
Hand
;
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
40
_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.
Hand
, SWI.Cursors.Hand);
80
_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.Hand, SWF.Cursors.
Hand
);