2 writes to _dragBaseRect
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.DropDownHolder.cs (2)
398_dragBaseRect = Bounds; 499_dragBaseRect = Rectangle.Empty;
7 references to _dragBaseRect
System.Windows.Forms (7)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.DropDownHolder.cs (7)
435newBounds.Height = Math.Max(s_minDropDownSize.Height, _dragBaseRect.Height + (dragPoint.Y - _dragStart.Y)); 445if ((_dragBaseRect.Height - delta) > s_minDropDownSize.Height) 447newBounds.Y = _dragBaseRect.Top + delta; 448newBounds.Height = _dragBaseRect.Height - delta; 456if ((_dragBaseRect.Width - delta) > s_minDropDownSize.Width) 458newBounds.X = _dragBaseRect.Left + delta; 459newBounds.Width = _dragBaseRect.Width - delta;