49 writes to RowCount
Accessibility_Core_App (2)
ContainerControls2.Designer.cs (2)
147this.tableLayoutPanel1.RowCount = 2; 409this.tableLayoutPanel2.RowCount = 2;
PresentationUI (16)
MS\Internal\Documents\Application\DocumentPropertiesDialog.Designer.cs (6)
130this.tableLayoutPanel3.RowCount = 2; 192this.tableLayoutPanel1.RowCount = 14; 441this.tableLayoutPanel2.RowCount = 3; 463this.tableLayoutPanel4.RowCount = 3; 549this._documentTable.RowCount = 5; 668this._fileTable.RowCount = 3;
MS\Internal\Documents\CredentialManagerDialog.Designer.cs (2)
65this._mainDialogTableLayoutPanel.RowCount = 3; 107this._userInputtableLayoutPanel.RowCount = 1;
MS\Internal\Documents\RequestedSignatureDialog.Designer.cs (2)
109_userInputTableLayoutPanel.RowCount = 8; 207_mainDialogTableLayoutPanel.RowCount = 2;
MS\Internal\Documents\RMEnrollmentPage2.Designer.cs (1)
159this._tableLayoutPanel1.RowCount = 4;
MS\Internal\Documents\RMEnrollmentPage3.Designer.cs (2)
56this.tableLayoutPanel1.RowCount = 3; 92this.tableLayoutPanel2.RowCount = 2;
MS\Internal\Documents\SignatureSummaryDialog.Designer.cs (1)
194_mainLayoutTable.RowCount = 3;
MS\Internal\Documents\SigningDialog.Designer.cs (2)
85_signatureControlInputLayoutTable.RowCount = 9; 246_mainLayoutTable.RowCount = 3;
System.Windows.Forms (5)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridErrorDialog.cs (3)
189RowCount = 1, 212RowCount = 1, 234RowCount = 2,
System\Windows\Forms\MDI\MDIWindowDialog.cs (1)
130_okCancelTableLayoutPanel.RowCount = 1;
System\Windows\Forms\Printing\PrintControllerWithStatusDialog.StatusDialog.cs (1)
69RowCount = 2,
System.Windows.Forms.Design (5)
System\ComponentModel\Design\ByteViewer.cs (1)
65RowCount = 1;
System\Windows\Forms\Design\LinkAreaEditor.LinkAreaUI.cs (1)
94_okCancelTableLayoutPanel.RowCount = 1;
System\Windows\Forms\Design\ShortcutKeysEditor.ShortcutKeysUI.cs (2)
144_outerPanel.RowCount = 2; 183_innerPanel.RowCount = 2;
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (1)
70Table.RowCount = value;
System.Windows.Forms.Tests (15)
SerializableTypesTests.cs (1)
276RowCount = 2
System\Windows\Forms\LayoutEventArgsTests.cs (1)
59RowCount = 2,
System\Windows\Forms\TableLayoutPanelTests.cs (13)
606control.RowCount = value; 612control.RowCount = value; 622Assert.Throws<ArgumentOutOfRangeException>("value", () => control.RowCount = -1); 723RowCount = 2, 960RowCount = 2, 975RowCount = 2, 998RowCount = 2, 1020RowCount = 2, 1043RowCount = 2, 1063RowCount = 2, 1083RowCount = 2, 1103RowCount = 2, 1123RowCount = 2,
System.Windows.Forms.UI.IntegrationTests (2)
DragDropTests.cs (1)
946RowCount = 1
Infra\ControlTestBase.cs (1)
289RowCount = 1
WinFormsControlsTest (4)
Buttons.cs (1)
30RowCount = 2
DragDrop.cs (1)
425RowCount = 1
DragDrop.Designer.cs (2)
73tableLayoutPanel1.RowCount = 6; 170tableLayoutPanel2.RowCount = 1;
14 references to RowCount
System.Windows.Forms.Design (10)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (10)
61get => Table.RowCount; 281bool rowState = Table.RowCount > 1; 419if (_owner.Table.RowCount > 1) 472newControlPosition.Y = Table.RowCount - 1; 1624if ((isRow ? Table.RowCount : Table.ColumnCount) < 2) 1650InsertRowCol(isRow, isRow ? Table.RowCount : Table.ColumnCount); 1685rowProp.SetValue(Table, Table.RowCount + 1); 1846rowProp.SetValue(Table, Table.RowCount - 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)
109Assert.Equal(1, control.RowCount);
System.Windows.Forms.Tests (3)
System\Windows\Forms\TableLayoutPanelTests.cs (3)
109Assert.Equal(0, control.RowCount); 607Assert.Equal(value, control.RowCount); 613Assert.Equal(value, control.RowCount);