1 write to _rows
Microsoft.Maui.Controls (1)
LegacyLayouts\GridCalc.cs (1)
494
_rows
= grid.RowDefinitions == null ? new List<RowDefinition>() : grid.RowDefinitions.ToList();
44 references to _rows
Microsoft.Maui.Controls (44)
LegacyLayouts\GridCalc.cs (44)
101
public List<RowDefinition> Rows =>
_rows
;
124
for (var index = 0; index <
_rows
.Count; index++)
126
RowDefinition row =
_rows
[index];
157
for (var index = 0; index <
_rows
.Count; index++)
159
RowDefinition row =
_rows
[index];
178
for (var rowspan = 1; rowspan <=
_rows
.Count; rowspan++)
180
for (var i = 0; i <
_rows
.Count; i++)
182
RowDefinition row =
_rows
[i];
258
for (var index = 0; index <
_rows
.Count; index++)
260
RowDefinition row =
_rows
[index];
281
for (var index = 0; index <
_rows
.Count; index++)
283
RowDefinition r =
_rows
[index];
295
return new Size(columnWidthSum + (_columns.Count - 1) * columnSpacing, rowHeightSum + (
_rows
.Count - 1) * rowSpacing);
343
for (var index = 0; index <
_rows
.Count; index++)
345
RowDefinition r =
_rows
[index];
354
for (var index = 0; index <
_rows
.Count; index++)
356
RowDefinition row =
_rows
[index];
442
for (int n = 0; n <
_rows
.Count; n++)
444
var row =
_rows
[n];
479
for (var index = 0; index <
_rows
.Count; index++)
481
RowDefinition row =
_rows
[index];
514
while (
_rows
.Count <= lastRow)
515
_rows
.Add(new RowDefinition());
522
for (var index = 0; index <
_rows
.Count; index++)
524
RowDefinition row =
_rows
[index];
628
for (var index = 0; index <
_rows
.Count; index++)
630
RowDefinition row =
_rows
[index];
638
for (var index = 0; index <
_rows
.Count; index++)
640
RowDefinition row =
_rows
[index];
713
for (var rowspan = 1; rowspan <=
_rows
.Count; rowspan++)
715
for (var i = 0; i <
_rows
.Count; i++)
717
RowDefinition row =
_rows
[i];
752
for (var index = 0; index <
_rows
.Count; index++)
754
RowDefinition row =
_rows
[index];
778
for (var index = 0; index <
_rows
.Count; index++)
780
RowDefinition row =
_rows
[index];
819
if (
_rows
[i].ActualHeight <= 0)
841
if (
_rows
[i].ActualHeight >= 0)
842
actual +=
_rows
[i].ActualHeight;
861
if (
_rows
[i].Height.IsAuto)
862
return
_rows
[i];
868
double assigned = (
_rows
.Count - 1) * rowSpacing;
869
for (var i = 0; i <
_rows
.Count; i++)
871
double actual =
_rows
[i].ActualHeight;