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