5 references to UpArrow
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursors.cs (1)
51
public static Cursor UpArrow => s_upArrow ??= new(PInvoke.IDC_UPARROW, nameof(
UpArrow
));
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
221
Assert.Contains(Cursors.
UpArrow
, values);
System\Windows\Forms\CursorsTests.cs (1)
42
yield return new object[] { I(() => Cursors.
UpArrow
) };
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
61
_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.
UpArrow
, SWI.Cursors.UpArrow);
101
_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.UpArrow, SWF.Cursors.
UpArrow
);