5 writes to ColumnCount
System.Windows.Forms (5)
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (4)
460settings.ColumnCount = 0; 505TableLayoutSettings.ColumnCount = DisplayedItems.Count + 1; // add an extra cell so it fills the remaining space 542TableLayoutSettings.ColumnCount = 1; 550TableLayoutSettings.ColumnCount = 1;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
116_tableLayoutSettings.ColumnCount = value;
2 references to ColumnCount
System.Windows.Forms (2)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (1)
113get => _tableLayoutSettings.ColumnCount;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
107Debug.Assert(ColumnCount == value, "the max columns should equal to the value we set it to");