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