5 references to PanNorth
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursors.cs (1)
62
public static Cursor PanNorth => s_panNorth ??= new("north.cur", nameof(
PanNorth
));
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
210
Assert.Contains(Cursors.
PanNorth
, values);
System\Windows\Forms\CursorsTests.cs (1)
31
yield return new object[] { I(() => Cursors.
PanNorth
) };
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
49
_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.
PanNorth
, SWI.Cursors.ScrollN);
89
_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.ScrollN, SWF.Cursors.
PanNorth
);