5 references to UpArrow
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursors.cs (1)
51public static Cursor UpArrow => s_upArrow ??= new(PInvoke.IDC_UPARROW, nameof(UpArrow));
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
221Assert.Contains(Cursors.UpArrow, values);
System\Windows\Forms\CursorsTests.cs (1)
42yield 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);