1 write to FontHeight
System.Windows.Forms (1)
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
802FontHeight = -1;
11 references to FontHeight
System.Windows.Forms (11)
System\Windows\Forms\Control.cs (1)
2064localFontHeight = ParentInternal.FontHeight;
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (3)
589return Properties.TryGetValue(s_propItemHeight, out int itemHeight) ? itemHeight : FontHeight + 2; 779Size textSize = TextRenderer.MeasureText(LayoutUtils.TestString, Font, new Size(short.MaxValue, (int)(FontHeight * 1.25)), TextFormatFlags.SingleLine); 790Size textSize = TextRenderer.MeasureText(LayoutUtils.TestString, Font, new Size(short.MaxValue, (int)(FontHeight * 1.25)), TextFormatFlags.SingleLine);
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
745int height = FontHeight;
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
542int boxTop = FontHeight / 2;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (2)
801int height = FontHeight; 854textSize.Height = Math.Max(textSize.Height, FontHeight);
System\Windows\Forms\Controls\TreeView\TreeView.cs (2)
785return Math.Max(16, FontHeight + 3); 788return FontHeight + 3;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
337int height = FontHeight;