4 writes to RowCount
System.Windows.Forms (4)
winforms\Managed\System\WinForms\StatusStrip.cs (3)
453
settings.
RowCount
= 0;
491
TableLayoutSettings.
RowCount
= 1;
539
TableLayoutSettings.
RowCount
= DisplayedItems.Count+1; // add an extra cell so it fills the remaining space
winforms\Managed\System\WinForms\TableLayoutPanel.cs (1)
171
set { _tableLayoutSettings.
RowCount
= value; }
2 references to RowCount
System.Windows.Forms (2)
winforms\Managed\System\WinForms\TableLayoutPanel.cs (1)
170
get { return _tableLayoutSettings.
RowCount
; }
winforms\Managed\System\WinForms\TableLayoutSettings.cs (1)
145
Debug.Assert(
RowCount
== value, "the max rows should equal to the value we set it to");