5 references to PanNE
System.Windows.Forms (1)
System\Windows\Forms\Input\Cursors.cs (1)
61
public static Cursor PanNE => s_panNE ??= new("ne.cur", nameof(
PanNE
));
System.Windows.Forms.Tests (2)
System\Windows\Forms\CursorConverterTests.cs (1)
209
Assert.Contains(Cursors.
PanNE
, values);
System\Windows\Forms\CursorsTests.cs (1)
30
yield return new object[] { I(() => Cursors.
PanNE
) };
WindowsFormsIntegration (2)
System\Windows\Integration\Convert.cs (2)
50
_toSystemWindowsInputCursorDictionary.Add(SWF.Cursors.
PanNE
, SWI.Cursors.ScrollNE);
90
_toSystemWindowsFormsCursorDictionary.Add(SWI.Cursors.ScrollNE, SWF.Cursors.
PanNE
);