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)
1301if (BehaviorService is null && _mouseDragLast != InvalidPoint) 1384if (_mouseDragLast == InvalidPoint || 1385(Math.Abs(_mouseDragLast.X - x) < minDrag.Width && 1386Math.Abs(_mouseDragLast.Y - y) < minDrag.Height)) 1438DropSourceBehavior dsb = new(dragControls, Control.Parent, _mouseDragLast);