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)
435
newBounds.Height = Math.Max(s_minDropDownSize.Height,
_dragBaseRect
.Height + (dragPoint.Y - _dragStart.Y));
445
if ((
_dragBaseRect
.Height - delta) > s_minDropDownSize.Height)
447
newBounds.Y =
_dragBaseRect
.Top + delta;
448
newBounds.Height =
_dragBaseRect
.Height - delta;
456
if ((
_dragBaseRect
.Width - delta) > s_minDropDownSize.Width)
458
newBounds.X =
_dragBaseRect
.Left + delta;
459
newBounds.Width =
_dragBaseRect
.Width - delta;