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