5 references to PanEast
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursors.cs (1)
60
public static Cursor PanEast => s_panEast ??= new("east.cur", nameof(
PanEast
));
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
208
Assert.Contains(Cursors.
PanEast
, values);
System\Windows\Forms\CursorsTests.cs (1)
29
yield return new object[] { I(() => Cursors.
PanEast
) };
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
48
_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.
PanEast
, SWI.Cursors.ScrollE);
88
_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.ScrollE, SWF.Cursors.
PanEast
);