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