2 writes to Rows
System.Windows.Forms (2)
System\Windows\Forms\Layout\TableLayout.cs (2)
475
containerInfo.
Rows
= new Strip[numRows];
1444
containerInfo.
Rows
= rows!;
28 references to Rows
System.Windows.Forms (28)
System\Windows\Forms\Layout\TableLayout.cs (20)
120
SumStrips(containerInfo.
Rows
, 0, containerInfo.
Rows
.Length)));
185
if (tempInfo.
Rows
is not null && containerInfo.
Rows
is not null && (tempInfo.
Rows
.Length != containerInfo.
Rows
.Length))
224
Strip[] rows = containerInfo.
Rows
;
473
if (containerInfo.
Rows
is null || containerInfo.
Rows
.Length != numRows)
623
InitializeStrips(containerInfo.
Rows
, containerInfo.RowStyles);
633
containerInfo.
Rows
[layoutInfo.RowStart].IsStart = true;
856
int rowStop = Math.Min(layoutInfo.RowStart + layoutInfo.RowSpan, containerInfo.
Rows
.Length);
857
DistributeSize(containerInfo.RowStyles, containerInfo.
Rows
, layoutInfo.RowStart, rowStop, minHeight, maxHeight, containerInfo.CellBorderWidth);
861
return DistributeStyles(containerInfo.CellBorderWidth, containerInfo.RowStyles, containerInfo.
Rows
, proposedConstraints.Height, dontHonorConstraint);
1207
top += containerInfo.
Rows
[currentRow].MinSize;
1246
for (int rowIndex = currentRow; rowIndex < rowStop && rowIndex < containerInfo.
Rows
.Length; rowIndex++)
1248
height += containerInfo.
Rows
[rowIndex].MinSize;
1424
Strip[] rows = containerInfo.
Rows
;
1431
Debug.Assert((containerInfo.
Rows
is null && rows is null) || containerInfo.
Rows
!.Length == rows.Length,
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutPanel.cs (8)
288
if (containerInfo.
Rows
is null)
293
int[] rh = new int[containerInfo.
Rows
.Length];
294
for (int i = 0; i < containerInfo.
Rows
.Length; i++)
296
rh[i] = containerInfo.
Rows
[i].MinSize;
339
TableLayout.Strip[] rowStrips = containerInfo.
Rows
;
508
int lastRow = containerInfo.
Rows
.Length - 1;
509
if (containerInfo.
Rows
.Length > 0)
511
lastRowHeight = containerInfo.
Rows
[lastRow].MinSize;