2 writes to _cursorWidth
System.Windows.Forms.Design (2)
System\Drawing\Design\CursorEditor.CursorUI.cs (2)
44
_cursorWidth
= GetCursorWidthForDpi(Cursors.Default, DeviceDpi);
135
_cursorWidth
= GetCursorWidthForDpi(Cursors.Default, deviceDpiNew);
4 references to _cursorWidth
System.Windows.Forms.Design (4)
System\Drawing\Design\CursorEditor.CursorUI.cs (4)
75
e.Graphics.FillRectangle(SystemBrushes.Control, new Rectangle(e.Bounds.X + 2, e.Bounds.Y + 2,
_cursorWidth
, e.Bounds.Height - 4));
76
e.Graphics.DrawRectangle(SystemPens.WindowText, new Rectangle(e.Bounds.X + 2, e.Bounds.Y + 2,
_cursorWidth
- 1, e.Bounds.Height - 4 - 1));
78
cursor.DrawStretched(e.Graphics, new Rectangle(e.Bounds.X + 2, e.Bounds.Y + 2,
_cursorWidth
, e.Bounds.Height - 4));
79
e.Graphics.DrawString(text, font, brushText, e.Bounds.X +
_cursorWidth
+ 4, e.Bounds.Y + (e.Bounds.Height - font.Height) / 2);