26 writes to ColumnCount
PresentationUI (16)
MS\Internal\Documents\Application\DocumentPropertiesDialog.Designer.cs (6)
123
this.tableLayoutPanel3.
ColumnCount
= 1;
161
this.tableLayoutPanel1.
ColumnCount
= 2;
433
this.tableLayoutPanel2.
ColumnCount
= 1;
451
this.tableLayoutPanel4.
ColumnCount
= 3;
534
this._documentTable.
ColumnCount
= 2;
657
this._fileTable.
ColumnCount
= 2;
MS\Internal\Documents\CredentialManagerDialog.Designer.cs (2)
58
this._mainDialogTableLayoutPanel.
ColumnCount
= 1;
100
this._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)
148
this._tableLayoutPanel1.
ColumnCount
= 2;
MS\Internal\Documents\RMEnrollmentPage3.Designer.cs (2)
49
this.tableLayoutPanel1.
ColumnCount
= 1;
85
this.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)
186
ColumnCount
= 3,
208
ColumnCount
= 2,
233
ColumnCount
= 1,
System\Windows\Forms\MDI\MDIWindowDialog.cs (1)
124
_okCancelTableLayoutPanel.
ColumnCount
= 2;
System\Windows\Forms\Printing\PrintControllerWithStatusDialog.StatusDialog.cs (1)
59
ColumnCount
= 1,
System.Windows.Forms.Design (5)
System\ComponentModel\Design\ByteViewer.cs (1)
62
ColumnCount
= 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)
86
Table.
ColumnCount
= value;
12 references to ColumnCount
System.Windows.Forms (2)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (2)
16
[DefaultProperty(nameof(
ColumnCount
))]
117
Debug.Assert(
ColumnCount
== value, "ColumnCount should be the same as we set it");
System.Windows.Forms.Design (10)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (10)
77
get => Table.
ColumnCount
;
272
bool colState = Table.
ColumnCount
> 1;
411
if (_owner.Table.
ColumnCount
> 1)
479
newControlPosition.X = Table.
ColumnCount
- 1;
1609
if ((isRow ? Table.RowCount : Table.
ColumnCount
) < 2)
1635
InsertRowCol(isRow, isRow ? Table.RowCount : Table.
ColumnCount
);
1682
colProp.SetValue(Table, Table.
ColumnCount
+ 1);
1843
colProp.SetValue(Table, Table.
ColumnCount
- 1);
1854
if ((isRow ? Table.RowCount : Table.
ColumnCount
) < 2)
1916
private void OnRemove(bool isRow) => OnRemoveInternal(isRow, isRow ? Table.RowCount - 1 : Table.
ColumnCount
- 1);