5 references to Cross
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursors.cs (1)
42
public static Cursor Cross => s_cross ??= new(PInvoke.IDC_CROSS, nameof(
Cross
));
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ComponentTray.cs (1)
2385
Cursor.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
);