3 writes to _mouseDragLast
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ControlDesigner.cs (3)
1306
_mouseDragLast
= new Point(x, y);
1323
_mouseDragLast
= InvalidPoint;
1443
_mouseDragLast
= InvalidPoint;
5 references to _mouseDragLast
System.Windows.Forms.Design (5)
System\Windows\Forms\Design\ControlDesigner.cs (5)
1301
if (BehaviorService is null &&
_mouseDragLast
!= InvalidPoint)
1384
if (
_mouseDragLast
== InvalidPoint ||
1385
(Math.Abs(
_mouseDragLast
.X - x) < minDrag.Width &&
1386
Math.Abs(
_mouseDragLast
.Y - y) < minDrag.Height))
1438
DropSourceBehavior dsb = new(dragControls, Control.Parent,
_mouseDragLast
);