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