8 references to VerticalScrollBarArrowHeight
System.Windows.Forms (6)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
4545
int oldThumbHeight = Math.Max(((_vertScrollBar.Height - 2 * SystemInformation.
VerticalScrollBarArrowHeight
) * _vertScrollBar.LargeChange) / _vertScrollBar.Maximum, 8);
4556
(_vertScrollBar.Height - 2 * SystemInformation.
VerticalScrollBarArrowHeight
) * _vertScrollBar.LargeChange / _vertScrollBar.Maximum,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (4)
218
: new(SystemInformation.
VerticalScrollBarArrowHeight
, RowHeight);
256
: new Size(SystemInformation.
VerticalScrollBarArrowHeight
, RowHeight);
4328
: new Size(SystemInformation.
VerticalScrollBarArrowHeight
, RowHeight);
5151
_dropDownButton.Size = new(SystemInformation.
VerticalScrollBarArrowHeight
, RowHeight);
System.Windows.Forms.Tests (2)
System\Windows\Forms\SystemInformationTests.cs (2)
765
int height = SystemInformation.
VerticalScrollBarArrowHeight
;
768
Assert.Equal(height, SystemInformation.
VerticalScrollBarArrowHeight
);