3 writes to _mouseDragLast
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ControlDesigner.cs (3)
1321
_mouseDragLast
= new Point(x, y);
1338
_mouseDragLast
= InvalidPoint;
1458
_mouseDragLast
= InvalidPoint;
5 references to _mouseDragLast
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\ControlDesigner.cs (5)
1316
if (BehaviorService is null &&
_mouseDragLast
!= InvalidPoint)
1399
if (
_mouseDragLast
== InvalidPoint ||
1400
(Math.Abs(
_mouseDragLast
.X - x) < minDrag.Width &&
1401
Math.Abs(
_mouseDragLast
.Y - y) < minDrag.Height))
1453
DropSourceBehavior dsb = new(dragControls, Control.Parent,
_mouseDragLast
);