3 writes to _mouseDragStart
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ComponentTray.cs (3)
1199
_mouseDragStart
= InvalidPoint;
1265
_mouseDragStart
= new Point(e.X, e.Y);
1368
_mouseDragStart
= InvalidPoint;
11 references to _mouseDragStart
System.Windows.Forms.Design (11)
System\Windows\Forms\Design\ComponentTray.cs (11)
1190
if (
_mouseDragStart
!= InvalidPoint)
1195
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1300
if (
_mouseDragStart
!= InvalidPoint)
1304
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1313
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1330
if (
_mouseDragStart
!= InvalidPoint && e.Button == MouseButtons.Left)
1337
DrawRubber(
_mouseDragStart
, _mouseDragEnd);
1340
X = Math.Min(
_mouseDragStart
.X, e.X),
1341
Y = Math.Min(
_mouseDragStart
.Y, e.Y),
1342
Width = Math.Abs(e.X -
_mouseDragStart
.X),
1343
Height = Math.Abs(e.Y -
_mouseDragStart
.Y)