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