3 writes to _mouseDragStart
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ComponentTray.cs (3)
1184
_mouseDragStart
= InvalidPoint;
1250
_mouseDragStart
= new Point(e.X, e.Y);
1353
_mouseDragStart
= InvalidPoint;
11 references to _mouseDragStart
System.Windows.Forms.Design (11)
System\Windows\Forms\Design\ComponentTray.cs (11)
1175
if (
_mouseDragStart
!= InvalidPoint)
1180
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1285
if (
_mouseDragStart
!= InvalidPoint)
1289
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1298
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1315
if (
_mouseDragStart
!= InvalidPoint && e.Button == MouseButtons.Left)
1322
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1325
X = Math.Min(
_mouseDragStart
.X, e.X),
1326
Y = Math.Min(
_mouseDragStart
.Y, e.Y),
1327
Width = Math.Abs(e.X -
_mouseDragStart
.X),
1328
Height = Math.Abs(e.Y -
_mouseDragStart
.Y)