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)
681
OnMouseDragEnd(
_mouseDragBase
== InvalidPoint);
1759
if (
_mouseDragBase
== InvalidPoint)
1770
Point baseVar =
_mouseDragBase
;
1911
if (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;
1937
Rectangle r = new(
_mouseDragBase
.X - _adornerWindowToScreenOffset.X,
1938
_mouseDragBase
.Y - _adornerWindowToScreenOffset.Y,
1939
x -
_mouseDragBase
.X, y -
_mouseDragBase
.Y);