5 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)
2385Cursor.Current = Cursors.Cross;
System\Windows\Forms\Design\TabOrder.cs (1)
630=> Cursor.Current = _ctlHover is not null ? Cursors.Cross : Cursors.Default;
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
35_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.Cross, SWI.Cursors.Cross); 75_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.Cross, SWF.Cursors.Cross);