1 write to Rows
System.Windows.Forms (1)
winforms\Managed\System\WinForms\Layout\TableLayout.cs (1)
531
containerInfo.
Rows
= new Strip[numRows];
26 references to Rows
System.Windows.Forms (26)
winforms\Managed\System\WinForms\Layout\TableLayout.cs (18)
209
SumStrips(containerInfo.
Rows
, 0, containerInfo.
Rows
.Length)));
274
if (tempInfo.
Rows
!= null && containerInfo.
Rows
!= null && (tempInfo.
Rows
.Length != containerInfo.
Rows
.Length))
310
Strip[] rows = containerInfo.
Rows
;
530
if (containerInfo.
Rows
== null || containerInfo.
Rows
.Length != numRows) {
647
InitializeStrips(containerInfo.
Rows
, containerInfo.RowStyles);
656
containerInfo.
Rows
[layoutInfo.RowStart].IsStart = true;
848
int rowStop = Math.Min(layoutInfo.RowStart + layoutInfo.RowSpan, containerInfo.
Rows
.Length);
849
DistributeSize(containerInfo.RowStyles, containerInfo.
Rows
, layoutInfo.RowStart, rowStop, minHeight, maxHeight, containerInfo.CellBorderWidth);
852
return DistributeStyles(containerInfo.CellBorderWidth, containerInfo.RowStyles, containerInfo.
Rows
, proposedConstraints.Height, dontHonorConstraint);
1178
top += containerInfo.
Rows
[currentRow].MinSize;
1211
for(int rowIndex = currentRow; rowIndex < rowStop && rowIndex < containerInfo.
Rows
.Length; rowIndex++) {
1212
height += containerInfo.
Rows
[rowIndex].MinSize;
2067
Strip[] rows = containerInfo.
Rows
;
winforms\Managed\System\WinForms\TableLayoutPanel.cs (8)
343
if (containerInfo.
Rows
== null) {
347
int[] rh = new int[containerInfo.
Rows
.Length];
348
for(int i = 0; i < containerInfo.
Rows
.Length; i++) {
349
rh[i] = containerInfo.
Rows
[i].MinSize;
402
TableLayout.Strip[] rowStrips = containerInfo.
Rows
;
512
int lastRow = containerInfo.
Rows
.Length -1;
513
if (containerInfo.
Rows
.Length > 0) {
514
lastRowHeight = containerInfo.
Rows
[lastRow].MinSize;