11 writes to Height
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (2)
504TableLayoutSettings.RowStyles[0].Height = Math.Max(0, DisplayRectangle.Height); 538rowStyle.Height = 100; // this width is ignored in AutoSize.
System\Windows\Forms\Panels\TableLayoutPanel\RowStyle.cs (1)
20Height = height;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
550rs.Height = (float)Math.Round(lastRowHeight * factor.Height); 554rs.Height = (float)Math.Round(rs.Height * factor.Height);
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\StyleEditorForm.cs (2)
911_tableLayoutPanel.RowStyles[index].Height = value; 1004_tableLayoutPanel.RowStyles[i].Height = (_tableLayoutPanel.RowStyles[i].Height * 100) / total;
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (4)
661Table.RowStyles[0].Height = DesignerUtils.s_minimumStylePercent; 663Table.RowStyles[1].Height = DesignerUtils.s_minimumStylePercent; 1974Table.RowStyles[index].Height = rh[index]; 1986Table.RowStyles[index].Height = DesignerUtils.s_minimumStylePercent;
8 references to Height
System.Windows.Forms (2)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
554rs.Height = (float)Math.Round(rs.Height * factor.Height);
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettingsTypeConverter.cs (1)
115rowStyles.Append($"{rowStyle.SizeType},{rowStyle.Height},");
System.Windows.Forms.Design (6)
System\Windows\Forms\Design\StyleEditorForm.cs (6)
590sizeValue = FormatValueString(rowStyle.SizeType, rowStyle.Height); 663UpdateGroupBox(_tableLayoutPanel.RowStyles[index].SizeType, _tableLayoutPanel.RowStyles[index].Height); 680value = _isRowCollection ? _tableLayoutPanel.RowStyles[index].Height : _tableLayoutPanel.ColumnStyles[index].Width; 690if (value != (_isRowCollection ? _tableLayoutPanel.RowStyles[index].Height : _tableLayoutPanel.ColumnStyles[index].Width)) 976total += _tableLayoutPanel.RowStyles[i].Height; 1004_tableLayoutPanel.RowStyles[i].Height = (_tableLayoutPanel.RowStyles[i].Height * 100) / total;