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