5 references to PanWest
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursors.cs (1)
67
public static Cursor PanWest => s_panWest ??= new("west.cur", nameof(
PanWest
));
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
215
Assert.Contains(Cursors.
PanWest
, values);
System\Windows\Forms\CursorsTests.cs (1)
36
yield return new object[] { I(() => Cursors.
PanWest
) };
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
55
_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.
PanWest
, SWI.Cursors.ScrollW);
95
_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.ScrollW, SWF.Cursors.
PanWest
);