14 references to RowStyles
System.Windows.Forms (14)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (11)
462settings.RowStyles.Clear(); 495if (TableLayoutSettings.RowStyles.Count is > 1 or 0) 497TableLayoutSettings.RowStyles.Clear(); 498TableLayoutSettings.RowStyles.Add(new RowStyle()); 503TableLayoutSettings.RowStyles[0].SizeType = SizeType.Absolute; 504TableLayoutSettings.RowStyles[0].Height = Math.Max(0, DisplayRectangle.Height); 521int originalRowCount = TableLayoutSettings.RowStyles.Count; 529TableLayoutSettings.RowStyles.Add(new RowStyle()); 537RowStyle rowStyle = TableLayoutSettings.RowStyles[i]; 557for (int i = DisplayedItems.Count; i < TableLayoutSettings.RowStyles.Count; i++) 559TableLayoutSettings.RowStyles[i].SizeType = SizeType.AutoSize;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
156public TableLayoutRowStyleCollection RowStyles => _tableLayoutSettings.RowStyles;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettingsTypeConverter.cs (2)
113foreach (RowStyle rowStyle in tableLayoutSettings.RowStyles) 240settings.RowStyles.Add(new RowStyle(type, width));