1 write to FontHeight
System.Windows.Forms (1)
winforms\Managed\System\WinForms\UpDownBase.cs (1)
1061FontHeight = -1;
11 references to FontHeight
System.Windows.Forms (11)
winforms\Managed\System\WinForms\ComboBox.cs (3)
732return FontHeight + 2; // bug (90774)+2 for the 1 pixel gap on each side (up and Bottom) of the Text. 936Size textSize = TextRenderer.MeasureText(LayoutUtils.TestString, this.Font, new Size(Int16.MaxValue, (int)(FontHeight * 1.25)), TextFormatFlags.SingleLine); 946Size textSize = TextRenderer.MeasureText(LayoutUtils.TestString, this.Font, new Size(Int16.MaxValue, (int)(FontHeight * 1.25)), TextFormatFlags.SingleLine);
winforms\Managed\System\WinForms\Control.cs (1)
2686localFontHeight = ParentInternal.FontHeight;
winforms\Managed\System\WinForms\DateTimePicker.cs (1)
878int height = FontHeight;
winforms\Managed\System\WinForms\GroupBox.cs (1)
624int boxTop = FontHeight / 2;
winforms\Managed\System\WinForms\TextBoxBase.cs (2)
945int height = FontHeight; 990textSize.Height = Math.Max(textSize.Height, FontHeight);
winforms\Managed\System\WinForms\TreeView.cs (2)
797return Math.Max(16, FontHeight + 3); 799return FontHeight + 3;
winforms\Managed\System\WinForms\UpDownBase.cs (1)
532int height = FontHeight;