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
;
1912
if (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;
1938
Rectangle r = new(
_mouseDragBase
.X - _adornerWindowToScreenOffset.X,
1939
_mouseDragBase
.Y - _adornerWindowToScreenOffset.Y,
1940
x -
_mouseDragBase
.X, y -
_mouseDragBase
.Y);