2 writes to MinDropDownSize
System.Windows.Forms (2)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
5476
MinDropDownSize
= new Size(SystemInformation.VerticalScrollBarWidth * 4, SystemInformation.HorizontalScrollBarHeight * 4);
6125
MinDropDownSize
= new Size(SystemInformation.GetVerticalScrollBarWidthForDpi(newDpi) * 4, scrollbarHeight * 4);
3 references to MinDropDownSize
System.Windows.Forms (3)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (3)
5838
newBounds.Height = Math.Max(
MinDropDownSize
.Height, dragBaseRect.Height + (dragPoint.Y - dragStart.Y));
5849
if ((dragBaseRect.Height - delta) >
MinDropDownSize
.Height)
5860
if ((dragBaseRect.Width - delta) >
MinDropDownSize
.Width)