8 references to Rows
Microsoft.Maui.Controls (8)
LegacyLayouts\Grid.cs (1)
188
List<RowDefinition> rowDefinitions = structure.
Rows
;
LegacyLayouts\GridCalc.cs (7)
38
posy += structure.
Rows
[i].ActualHeight;
43
double h = structure.
Rows
[r].ActualHeight;
45
h += RowSpacing + structure.
Rows
[r + i].ActualHeight;
73
for (var index = 0; index < structure.
Rows
.Count; index++)
75
RowDefinition r = structure.
Rows
[index];
81
var request = new Size(columnWidthSum + (structure.Columns.Count - 1) * ColumnSpacing, rowHeightSum + (structure.
Rows
.Count - 1) * RowSpacing);
82
var minimum = new Size(nonStarColumnWidthSum + (structure.Columns.Count - 1) * ColumnSpacing, nonStarRowHeightSum + (structure.
Rows
.Count - 1) * RowSpacing);