3 writes to _mouseDragStart
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ComponentTray.cs (3)
1193
_mouseDragStart
= InvalidPoint;
1259
_mouseDragStart
= new Point(e.X, e.Y);
1362
_mouseDragStart
= InvalidPoint;
11 references to _mouseDragStart
System.Windows.Forms.Design (11)
System\Windows\Forms\Design\ComponentTray.cs (11)
1184
if (
_mouseDragStart
!= InvalidPoint)
1189
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1294
if (
_mouseDragStart
!= InvalidPoint)
1298
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1307
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1324
if (
_mouseDragStart
!= InvalidPoint && e.Button == MouseButtons.Left)
1331
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1334
X = Math.Min(
_mouseDragStart
.X, e.X),
1335
Y = Math.Min(
_mouseDragStart
.Y, e.Y),
1336
Width = Math.Abs(e.X -
_mouseDragStart
.X),
1337
Height = Math.Abs(e.Y -
_mouseDragStart
.Y)