1 implementation of IGridRowDefinition
Microsoft.Maui.Controls (1)
RowDefinition.cs (1)
7
public sealed class RowDefinition : BindableObject, IDefinition,
IGridRowDefinition
6 references to IGridRowDefinition
Microsoft.Maui (3)
Core\IGridLayout.cs (1)
15
IReadOnlyList<
IGridRowDefinition
> RowDefinitions { get; }
Layouts\GridLayoutManager.cs (2)
155
static Definition[] InitializeRows(IReadOnlyList<
IGridRowDefinition
> rowDefinitions)
169
var
definition = rowDefinitions[n];
Microsoft.Maui.Controls (3)
Layout\Grid.cs (2)
114
ReadOnlyCastingList<
IGridRowDefinition
, RowDefinition> _rowDefs;
116
IReadOnlyList<
IGridRowDefinition
> IGridLayout.RowDefinitions => _rowDefs ??= new(RowDefinitions);
LegacyLayouts\Grid.cs (1)
439
IReadOnlyList<
IGridRowDefinition
> IGridLayout.RowDefinitions => RowDefinitions.ToList();