8 references to VerticalScrollBarArrowHeight
System.Windows.Forms (6)
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
4539
int oldThumbHeight = Math.Max(((_vertScrollBar.Height - 2 * SystemInformation.
VerticalScrollBarArrowHeight
) * _vertScrollBar.LargeChange) / _vertScrollBar.Maximum, 8);
4550
(_vertScrollBar.Height - 2 * SystemInformation.
VerticalScrollBarArrowHeight
) * _vertScrollBar.LargeChange / _vertScrollBar.Maximum,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (4)
231
: new(SystemInformation.
VerticalScrollBarArrowHeight
, RowHeight);
278
: new Size(SystemInformation.
VerticalScrollBarArrowHeight
, RowHeight);
4358
: new Size(SystemInformation.
VerticalScrollBarArrowHeight
, RowHeight);
5174
_dropDownButton.Size = new(SystemInformation.
VerticalScrollBarArrowHeight
, RowHeight);
System.Windows.Forms.Tests (2)
System\Windows\Forms\SystemInformationTests.cs (2)
767
int height = SystemInformation.
VerticalScrollBarArrowHeight
;
770
Assert.Equal(height, SystemInformation.
VerticalScrollBarArrowHeight
);