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; 1906if (GetOleDragHandler().Dragging || _mouseDragBase == InvalidPoint) 1914_mouseDragOffset.X = _mouseDragBase.X; 1915_mouseDragOffset.Y = _mouseDragBase.Y; 1916_mouseDragOffset.Width = x - _mouseDragBase.X; 1917_mouseDragOffset.Height = y - _mouseDragBase.Y; 1932Rectangle r = new(_mouseDragBase.X - _adornerWindowToScreenOffset.X, 1933_mouseDragBase.Y - _adornerWindowToScreenOffset.Y, 1934x - _mouseDragBase.X, y - _mouseDragBase.Y);