5 writes to RowDefinitions
Microsoft.Maui.Controls (4)
Internals\ProfilePage.cs (1)
122
RowDefinitions
= new RowDefinitionCollection {
Layout\AndExpandLayoutManager.cs (2)
56
RowDefinitions
= new RowDefinitionCollection(),
92
RowDefinitions
= new RowDefinitionCollection { new RowDefinition { Height = GridLength.Star } },
RadioButton\RadioButton.cs (1)
473
RowDefinitions
= new RowDefinitionCollection {
Microsoft.Maui.Controls.Foldable (1)
TwoPaneView.cs (1)
241
RowDefinitions
= new RowDefinitionCollection() { new RowDefinition(), new RowDefinition(), new RowDefinition() };
13 references to RowDefinitions
Microsoft.Maui.Controls (9)
Layout\AndExpandLayoutManager.cs (2)
72
grid.
RowDefinitions
.Add(new RowDefinition { Height = GridLength.Star });
76
grid.
RowDefinitions
.Add(new RowDefinition { Height = GridLength.Auto });
Layout\Grid.cs (5)
24
/// <summary>Bindable property for <see cref="
RowDefinitions
"/>.</summary>
25
public static readonly BindableProperty RowDefinitionsProperty = BindableProperty.Create(nameof(
RowDefinitions
),
116
IReadOnlyList<IGridRowDefinition> IGridLayout.RowDefinitions => _rowDefs ??= new(
RowDefinitions
);
187
RowDefinitions
.Add(gridRowDefinition);
361
RowDefinitionCollection rowDefs =
RowDefinitions
;
Layout\GridExtensions.cs (2)
91
var count = grid.
RowDefinitions
.Count;
95
grid.
RowDefinitions
.Add(new RowDefinition());
Microsoft.Maui.Controls.Foldable (4)
TwoPaneView.cs (4)
324
if (
RowDefinitions
.Count != 3
453
var rowTop =
RowDefinitions
[0];
454
var rowMiddle =
RowDefinitions
[1];
455
var rowBottom =
RowDefinitions
[2];