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)
681
OnMouseDragEnd(
_mouseDragBase
== InvalidPoint);
1760
if (
_mouseDragBase
== InvalidPoint)
1771
Point baseVar =
_mouseDragBase
;
1906
if (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;
1932
Rectangle r = new(
_mouseDragBase
.X - _adornerWindowToScreenOffset.X,
1933
_mouseDragBase
.Y - _adornerWindowToScreenOffset.Y,
1934
x -
_mouseDragBase
.X, y -
_mouseDragBase
.Y);