System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (20)
230? new(SystemInformation.VerticalScrollBarArrowHeightForDpi(DeviceDpiInternal), RowHeight)
231: new(SystemInformation.VerticalScrollBarArrowHeight, RowHeight);
277? new Size(SystemInformation.VerticalScrollBarArrowHeightForDpi(DeviceDpiInternal), RowHeight)
278: new Size(SystemInformation.VerticalScrollBarArrowHeight, RowHeight);
348_listBox.ItemHeight = RowHeight;
1359public int GridEntryHeight => RowHeight;
1669if (RowHeight == -1)
1687pt.Y = (y - _location.Y) / (1 + RowHeight);
1928rect.Y = row * (RowHeight + 1) + 1 + _location.Y;
1929rect.Height = RowHeight;
3340g.DrawLine(splitterPen, _labelWidth, location.Y, _labelWidth, visibleCount * (RowHeight + 1) + location.Y);
3358currentRowHeight = i * (RowHeight + 1) + location.Y;
3380currentRowHeight = visibleCount * (RowHeight + 1) + location.Y;
4246int maxRows = (int)Math.Ceiling(((double)GetOurSize().Height) / (1 + RowHeight));
4357? new Size(SystemInformation.VerticalScrollBarArrowHeightForDpi(DeviceDpiInternal), RowHeight)
4358: new Size(SystemInformation.VerticalScrollBarArrowHeight, RowHeight);
4455_visibleRows = (int)Math.Ceiling(((double)size.Height) / (1 + RowHeight));
5162DropDownListBox.ItemHeight = RowHeight + 2;
5170_dropDownButton.Size = new(SystemInformation.VerticalScrollBarArrowHeightForDpi(DeviceDpiInternal), RowHeight);
5174_dropDownButton.Size = new(SystemInformation.VerticalScrollBarArrowHeight, RowHeight);