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)
1316if (BehaviorService is null && _mouseDragLast != InvalidPoint) 1399if (_mouseDragLast == InvalidPoint || 1400(Math.Abs(_mouseDragLast.X - x) < minDrag.Width && 1401Math.Abs(_mouseDragLast.Y - y) < minDrag.Height)) 1453DropSourceBehavior dsb = new(dragControls, Control.Parent, _mouseDragLast);