2 writes to _mouseDragBase
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\ParentControlDesigner.cs (2)
1728_mouseDragBase = new Point(x, y); 1773_mouseDragBase = InvalidPoint;
12 references to _mouseDragBase
System.Windows.Forms.Design (12)
System\Windows\Forms\Design\ParentControlDesigner.cs (12)
681OnMouseDragEnd(_mouseDragBase == InvalidPoint); 1759if (_mouseDragBase == InvalidPoint) 1770Point baseVar = _mouseDragBase; 1911if (GetOleDragHandler().Dragging || _mouseDragBase == InvalidPoint) 1919_mouseDragOffset.X = _mouseDragBase.X; 1920_mouseDragOffset.Y = _mouseDragBase.Y; 1921_mouseDragOffset.Width = x - _mouseDragBase.X; 1922_mouseDragOffset.Height = y - _mouseDragBase.Y; 1937Rectangle r = new(_mouseDragBase.X - _adornerWindowToScreenOffset.X, 1938_mouseDragBase.Y - _adornerWindowToScreenOffset.Y, 1939x - _mouseDragBase.X, y - _mouseDragBase.Y);