5 references to PanSW
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursors.cs (1)
66
public static Cursor PanSW => s_panSW ??= new("sw.cur", nameof(
PanSW
));
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
214
Assert.Contains(Cursors.
PanSW
, values);
System\Windows\Forms\CursorsTests.cs (1)
35
yield return new object[] { I(() => Cursors.
PanSW
) };
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
54
_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.
PanSW
, SWI.Cursors.ScrollSW);
94
_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.ScrollSW, SWF.Cursors.
PanSW
);