5 writes to ColumnCount
System.Windows.Forms (5)
winforms\Managed\System\WinForms\StatusStrip.cs (4)
454settings.ColumnCount = 0; 495TableLayoutSettings.ColumnCount = DisplayedItems.Count+1; // add an extra cell so it fills the remaining space 528TableLayoutSettings.ColumnCount = 1; 535TableLayoutSettings.ColumnCount = 1;
winforms\Managed\System\WinForms\TableLayoutPanel.cs (1)
136_tableLayoutSettings.ColumnCount = value;
2 references to ColumnCount
System.Windows.Forms (2)
winforms\Managed\System\WinForms\TableLayoutPanel.cs (1)
134get { return _tableLayoutSettings.ColumnCount; }
winforms\Managed\System\WinForms\TableLayoutSettings.cs (1)
119Debug.Assert(ColumnCount == value, "the max columns should equal to the value we set it to");