1 write to _toSystemWindowsFormsCursorDictionary
WindowsFormsIntegration (1)
System\Windows\Integration\Convert.cs (1)
72
_toSystemWindowsFormsCursorDictionary
= new Dictionary<SWI.Cursor, SWF.Cursor>();
28 references to _toSystemWindowsFormsCursorDictionary
WindowsFormsIntegration (28)
System\Windows\Integration\Convert.cs (28)
70
if (
_toSystemWindowsFormsCursorDictionary
== null)
73
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.AppStarting, SWF.Cursors.AppStarting);
74
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.Arrow, SWF.Cursors.Arrow);
75
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.Cross, SWF.Cursors.Cross);
76
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.Hand, SWF.Cursors.Hand);
77
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.Help, SWF.Cursors.Help);
78
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.IBeam, SWF.Cursors.IBeam);
79
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.No, SWF.Cursors.No);
80
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.None, SWF.Cursors.Default);
81
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollAll, SWF.Cursors.NoMove2D);
82
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollWE, SWF.Cursors.NoMoveHoriz);
83
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollNS, SWF.Cursors.NoMoveVert);
84
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollE, SWF.Cursors.PanEast);
85
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollN, SWF.Cursors.PanNorth);
86
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollNE, SWF.Cursors.PanNE);
87
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollNW, SWF.Cursors.PanNW);
88
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollS, SWF.Cursors.PanSouth);
89
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollSE, SWF.Cursors.PanSE);
90
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollSW, SWF.Cursors.PanSW);
91
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.ScrollW, SWF.Cursors.PanWest);
92
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.SizeAll, SWF.Cursors.SizeAll);
93
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.SizeNESW, SWF.Cursors.SizeNESW);
94
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.SizeNS, SWF.Cursors.SizeNS);
95
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.SizeNWSE, SWF.Cursors.SizeNWSE);
96
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.SizeWE, SWF.Cursors.SizeWE);
97
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.UpArrow, SWF.Cursors.UpArrow);
98
_toSystemWindowsFormsCursorDictionary
.Add(SWI.Cursors.Wait, SWF.Cursors.WaitCursor);
101
return
_toSystemWindowsFormsCursorDictionary
;