16 references to Height
System.Windows.Forms (16)
winforms\Managed\System\WinForms\ToolStrip.cs (1)
2345
selectedItem.Bounds.Y + selectedItem.
Height
/ 2);
winforms\Managed\System\WinForms\ToolStripDropDownItem.cs (2)
322
offset.Y = this.
Height
- 1;
326
offset.Y = this.
Height
- 1;
winforms\Managed\System\WinForms\ToolStripDropDownMenu.cs (3)
139
rect.Y += UpScrollButton.
Height
+ UpScrollButton.Margin.Vertical;
140
rect.Height -= UpScrollButton.
Height
+ UpScrollButton.Margin.Vertical + DownScrollButton.
Height
+ DownScrollButton.Margin.Vertical;
winforms\Managed\System\WinForms\ToolStripHighContrastRenderer.cs (2)
95
e.Graphics.DrawRectangle(SystemPens.ButtonHighlight, new Rectangle(0, 0, e.Item.Width - 1, e.Item.
Height
- 1));
175
e.Graphics.DrawRectangle(SystemPens.ButtonHighlight, 0, 0, e.Item.Width - 1, e.Item.
Height
- 1);
winforms\Managed\System\WinForms\ToolStripProfessionalRenderer.cs (5)
158
overflowArrowRect = new Rectangle(0, item.
Height
- overflowArrowOffsetY, overflowArrowWidth, overflowArrowHeight);
161
overflowArrowRect = new Rectangle(item.Width - overflowButtonWidth, item.
Height
- overflowArrowOffsetY, overflowArrowWidth, overflowArrowHeight);
291
ControlPaint.DrawBorder3D(e.Graphics, new Rectangle(0,0,item.Width, item.
Height
), item.BorderStyle, (Border3DSide)item.BorderSides);
909
Rectangle bounds = DpiHelper.IsScalingRequired ? new Rectangle(e.ImageRectangle.Left-2, (e.Item.
Height
- e.ImageRectangle.Height )/2- 1, e.ImageRectangle.Width+4, e.ImageRectangle.Height +2) :
910
new Rectangle(e.ImageRectangle.Left - 2, 1, e.ImageRectangle.Width + 4, e.Item.
Height
- 2);
winforms\Managed\System\WinForms\ToolStripSplitButton.cs (2)
372
dropDownButtonBounds = new Rectangle(Point.Empty, new Size(Math.Min(this.Width, DropDownButtonWidth), this.
Height
));
376
int splitButtonButtonHeight = Math.Max(0, this.
Height
);
winforms\Managed\System\WinForms\ToolStripSystemRenderer.cs (1)
446
ControlPaint.DrawBorder3D(e.Graphics, new Rectangle(0,0,item.Width-1, item.
Height
-1), item.BorderStyle, (Border3DSide)item.BorderSides);