20 references to HorizontalScrollBarHeight
System.Windows.Forms (13)
winforms\Managed\System\WinForms\DataGridViewMethods.cs (1)
10345
int horizScrollBarHeight = this.horizScrollBar.Height = SystemInformation.
HorizontalScrollBarHeight
;
winforms\Managed\System\WinForms\DataGridViewRowCollection.cs (2)
2166
GetRowsHeightExceedLimit(DataGridViewElementStates.Visible, 0, rowIndex, this.DataGridView.LayoutInfo.Data.Height + SystemInformation.
HorizontalScrollBarHeight
);
2177
useRowShortcut = GetRowsHeightExceedLimit(DataGridViewElementStates.Visible, 0, rowIndex, this.DataGridView.LayoutInfo.Data.Height + this.DataGridView.VerticalScrollingOffset + SystemInformation.
HorizontalScrollBarHeight
) &&
winforms\Managed\System\WinForms\Form.cs (3)
3424
correctClientSize.Height += SystemInformation.
HorizontalScrollBarHeight
;
3452
correct.Height += SystemInformation.
HorizontalScrollBarHeight
;
6038
if (HScroll) y += SystemInformation.
HorizontalScrollBarHeight
;
winforms\Managed\System\WinForms\HScrollBar.cs (1)
57
return new Size(80, SystemInformation.
HorizontalScrollBarHeight
);
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (2)
5476
MinDropDownSize = new Size(SystemInformation.VerticalScrollBarWidth * 4, SystemInformation.
HorizontalScrollBarHeight
* 4);
5477
ResizeGripSize = SystemInformation.
HorizontalScrollBarHeight
;
winforms\Managed\System\WinForms\RichTextBox.cs (1)
563
scrollBarPadding.Height += SystemInformation.
HorizontalScrollBarHeight
;
winforms\Managed\System\WinForms\ScrollableControl.cs (3)
430
fullClient.Height += SystemInformation.
HorizontalScrollBarHeight
;
433
minClient.Height -= SystemInformation.
HorizontalScrollBarHeight
;
592
clientToBe.Height -= SystemInformation.
HorizontalScrollBarHeight
;
System.Workflow.ComponentModel (7)
AuthoringOM\Design\DesignerWidgets.cs (2)
1483
Height = SystemInformation.
HorizontalScrollBarHeight
+ 2;
1486
this.tabStrip = new TabStrip(Orientation.Horizontal, SystemInformation.
HorizontalScrollBarHeight
);
AuthoringOM\Design\WorkflowView.cs (5)
1082
e.Graphics.FillRectangle(SystemBrushes.Control, new Rectangle(Width - SystemInformation.VerticalScrollBarWidth, Height - SystemInformation.
HorizontalScrollBarHeight
, SystemInformation.VerticalScrollBarWidth, SystemInformation.
HorizontalScrollBarHeight
));
1273
hScrollBar.Bounds = new Rectangle(0, Math.Max(0, Height - SystemInformation.
HorizontalScrollBarHeight
), Math.Max(Width - ((vScrollBar.Visible) ? SystemInformation.VerticalScrollBarWidth : 0), 0), SystemInformation.
HorizontalScrollBarHeight
);
1276
vScrollBar.Bounds = new Rectangle(Math.Max(0, Width - SystemInformation.VerticalScrollBarWidth), 0, SystemInformation.VerticalScrollBarWidth, Math.Max(Height - ((hScrollBar.Visible) ? SystemInformation.
HorizontalScrollBarHeight
: 0), 0));