8 references to RowDefinitions
Microsoft.Maui.Controls (8)
LegacyLayouts\Grid.cs (5)
52
/// <summary>Bindable property for <see cref="
RowDefinitions
"/>.</summary>
53
public static readonly BindableProperty RowDefinitionsProperty = BindableProperty.Create(nameof(
RowDefinitions
), typeof(RowDefinitionCollection), typeof(Grid), null,
272
RowDefinitionCollection rowDefs =
RowDefinitions
;
390
Parent.
RowDefinitions
.Count
439
IReadOnlyList<IGridRowDefinition> IGridLayout.RowDefinitions =>
RowDefinitions
.ToList();
LegacyLayouts\GridCalc.cs (3)
494
_rows = grid.
RowDefinitions
== null ? new List<RowDefinition>() : grid.
RowDefinitions
.ToList();
502
lastRow = Math.Max(lastRow, grid.
RowDefinitions
.Count - 1);