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