7 references to Cross
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursors.cs (1)
42public static Cursor Cross => s_cross ??= new(PInvoke.IDC_CROSS, nameof(Cross));
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ComponentTray.cs (1)
2403Cursor.Current = Cursors.Cross;
System\Windows\Forms\Design\TabOrder.cs (1)
639=> Cursor.Current = _ctlHover is not null ? Cursors.Cross : Cursors.Default;
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
198Assert.Contains(Cursors.Cross, values);
System\Windows\Forms\CursorsTests.cs (1)
19yield return new object[] { I(() => Cursors.Cross) };
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
39_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.Cross, SWI.Cursors.Cross); 79_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.Cross, SWF.Cursors.Cross);