2 writes to _mouseDragBase
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ParentControlDesigner.cs (2)
1729_mouseDragBase = new Point(x, y); 1774_mouseDragBase = InvalidPoint;
12 references to _mouseDragBase
System.Windows.Forms.Design (12)
System\Windows\Forms\Design\ParentControlDesigner.cs (12)
681OnMouseDragEnd(_mouseDragBase == InvalidPoint); 1760if (_mouseDragBase == InvalidPoint) 1771Point baseVar = _mouseDragBase; 1912if (GetOleDragHandler().Dragging || _mouseDragBase == InvalidPoint) 1920_mouseDragOffset.X = _mouseDragBase.X; 1921_mouseDragOffset.Y = _mouseDragBase.Y; 1922_mouseDragOffset.Width = x - _mouseDragBase.X; 1923_mouseDragOffset.Height = y - _mouseDragBase.Y; 1938Rectangle r = new(_mouseDragBase.X - _adornerWindowToScreenOffset.X, 1939_mouseDragBase.Y - _adornerWindowToScreenOffset.Y, 1940x - _mouseDragBase.X, y - _mouseDragBase.Y);