2 writes to dragBaseRect
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
5793
dragBaseRect
= Bounds;
5902
this.
dragBaseRect
= Rectangle.Empty;
7 references to dragBaseRect
System.Windows.Forms (7)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (7)
5838
newBounds.Height = Math.Max(MinDropDownSize.Height,
dragBaseRect
.Height + (dragPoint.Y - dragStart.Y));
5849
if ((
dragBaseRect
.Height - delta) > MinDropDownSize.Height)
5851
newBounds.Y =
dragBaseRect
.Top + delta;
5852
newBounds.Height =
dragBaseRect
.Height - delta;
5860
if ((
dragBaseRect
.Width - delta) > MinDropDownSize.Width)
5862
newBounds.X =
dragBaseRect
.Left + delta;
5863
newBounds.Width =
dragBaseRect
.Width - delta;