26 writes to ColumnCount
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;
12 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; 1609if ((isRow ? Table.RowCount : Table.ColumnCount) < 2) 1635InsertRowCol(isRow, isRow ? Table.RowCount : Table.ColumnCount); 1682colProp.SetValue(Table, Table.ColumnCount + 1); 1843colProp.SetValue(Table, Table.ColumnCount - 1); 1854if ((isRow ? Table.RowCount : Table.ColumnCount) < 2) 1916private void OnRemove(bool isRow) => OnRemoveInternal(isRow, isRow ? Table.RowCount - 1 : Table.ColumnCount - 1);