5 references to PanNW
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursors.cs (1)
63
public static Cursor PanNW => s_panNW ??= new("nw.cur", nameof(
PanNW
));
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
211
Assert.Contains(Cursors.
PanNW
, values);
System\Windows\Forms\CursorsTests.cs (1)
32
yield return new object[] { I(() => Cursors.
PanNW
) };
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
51
_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.
PanNW
, SWI.Cursors.ScrollNW);
91
_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.ScrollNW, SWF.Cursors.
PanNW
);