4 writes to RowCount
System.Windows.Forms (4)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (3)
459settings.RowCount = 0; 501TableLayoutSettings.RowCount = 1; 554TableLayoutSettings.RowCount = DisplayedItems.Count + 1; // add an extra cell so it fills the remaining space
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
147set => _tableLayoutSettings.RowCount = value;
2 references to RowCount
System.Windows.Forms (2)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
146get => _tableLayoutSettings.RowCount;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
133Debug.Assert(RowCount == value, "the max rows should equal to the value we set it to");