50 writes to ColumnCount
Accessibility_Core_App (2)
ContainerControls2.Designer.cs (2)
138this.tableLayoutPanel1.ColumnCount = 5; 403this.tableLayoutPanel2.ColumnCount = 2;
PresentationUI (16)
MS\Internal\Documents\Application\DocumentPropertiesDialog.Designer.cs (6)
123this.tableLayoutPanel3.ColumnCount = 1; 161this.tableLayoutPanel1.ColumnCount = 2; 433this.tableLayoutPanel2.ColumnCount = 1; 451this.tableLayoutPanel4.ColumnCount = 3; 534this._documentTable.ColumnCount = 2; 657this._fileTable.ColumnCount = 2;
MS\Internal\Documents\CredentialManagerDialog.Designer.cs (2)
58this._mainDialogTableLayoutPanel.ColumnCount = 1; 100this._userInputtableLayoutPanel.ColumnCount = 2;
MS\Internal\Documents\RequestedSignatureDialog.Designer.cs (2)
96_userInputTableLayoutPanel.ColumnCount = 1; 199_mainDialogTableLayoutPanel.ColumnCount = 1;
MS\Internal\Documents\RMEnrollmentPage2.Designer.cs (1)
148this._tableLayoutPanel1.ColumnCount = 2;
MS\Internal\Documents\RMEnrollmentPage3.Designer.cs (2)
49this.tableLayoutPanel1.ColumnCount = 1; 85this.tableLayoutPanel2.ColumnCount = 1;
MS\Internal\Documents\SignatureSummaryDialog.Designer.cs (1)
185_mainLayoutTable.ColumnCount = 1;
MS\Internal\Documents\SigningDialog.Designer.cs (2)
72_signatureControlInputLayoutTable.ColumnCount = 1; 239_mainLayoutTable.ColumnCount = 1;
System.Windows.Forms (5)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (3)
186ColumnCount = 3, 208ColumnCount = 2, 233ColumnCount = 1,
System\Windows\Forms\MDI\MDIWindowDialog.cs (1)
124_okCancelTableLayoutPanel.ColumnCount = 2;
System\Windows\Forms\Printing\PrintControllerWithStatusDialog.StatusDialog.cs (1)
59ColumnCount = 1,
System.Windows.Forms.Design (5)
System\ComponentModel\Design\ByteViewer.cs (1)
62ColumnCount = 1;
System\Windows\Forms\Design\LinkAreaEditor.LinkAreaUI.cs (1)
87_okCancelTableLayoutPanel.ColumnCount = 2;
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (2)
135_outerPanel.ColumnCount = 3; 176_innerPanel.ColumnCount = 2;
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
86Table.ColumnCount = value;
System.Windows.Forms.Tests (16)
SerializableTypesTests.cs (1)
275ColumnCount = 3,
System\Windows\Forms\ControlTests.cs (1)
864using TableLayoutPanel table = new() { Dock = DockStyle.Fill, ColumnCount = 3 };
System\Windows\Forms\LayoutEventArgsTests.cs (1)
58ColumnCount = 2,
System\Windows\Forms\TableLayoutPanelTests.cs (13)
314control.ColumnCount = value; 320control.ColumnCount = value; 330Assert.Throws<ArgumentOutOfRangeException>("value", () => control.ColumnCount = -1); 722ColumnCount = 3, 959ColumnCount = 3, 974ColumnCount = 3, 997ColumnCount = 3, 1019ColumnCount = 3, 1042ColumnCount = 3, 1062ColumnCount = 3, 1082ColumnCount = 3, 1102ColumnCount = 3, 1122ColumnCount = 3,
System.Windows.Forms.UI.IntegrationTests (2)
DragDropTests.cs (1)
1000ColumnCount = 1,
Infra\ControlTestBase.cs (1)
288ColumnCount = 2,
WinFormsControlsTest (4)
Buttons.cs (1)
29ColumnCount = 3,
DragDrop.cs (1)
422ColumnCount = 1,
DragDrop.Designer.cs (2)
58tableLayoutPanel1.ColumnCount = 3; 162tableLayoutPanel2.ColumnCount = 2;
16 references to ColumnCount
System.Windows.Forms (2)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
16[DefaultProperty(nameof(ColumnCount))] 117Debug.Assert(ColumnCount == value, "ColumnCount should be the same as we set it");
System.Windows.Forms.Design (10)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (10)
77get => Table.ColumnCount; 272bool colState = Table.ColumnCount > 1; 411if (_owner.Table.ColumnCount > 1) 479newControlPosition.X = Table.ColumnCount - 1; 1624if ((isRow ? Table.RowCount : Table.ColumnCount) < 2) 1650InsertRowCol(isRow, isRow ? Table.RowCount : Table.ColumnCount); 1697colProp.SetValue(Table, Table.ColumnCount + 1); 1858colProp.SetValue(Table, Table.ColumnCount - 1); 1869if ((isRow ? Table.RowCount : Table.ColumnCount) < 2) 1931private void OnRemove(bool isRow) => OnRemoveInternal(isRow, isRow ? Table.RowCount - 1 : Table.ColumnCount - 1);
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\ByteViewerTests.cs (1)
45Assert.Equal(1, control.ColumnCount);
System.Windows.Forms.Tests (3)
System\Windows\Forms\TableLayoutPanelTests.cs (3)
47Assert.Equal(0, control.ColumnCount); 315Assert.Equal(value, control.ColumnCount); 321Assert.Equal(value, control.ColumnCount);