12 instantiations of RowDefinition
Microsoft.Maui.Controls (9)
Internals\ProfilePage.cs (2)
123
new
RowDefinition
{ Height = new GridLength(1, GridUnitType.Star) },
124
new
RowDefinition
{ Height = GridLength.Auto },
Layout\AndExpandLayoutManager.cs (3)
72
grid.RowDefinitions.Add(new
RowDefinition
{ Height = GridLength.Star });
76
grid.RowDefinitions.Add(new
RowDefinition
{ Height = GridLength.Auto });
92
RowDefinitions = new RowDefinitionCollection { new
RowDefinition
{ Height = GridLength.Star } },
Layout\GridExtensions.cs (1)
95
grid.RowDefinitions.Add(new
RowDefinition
());
LegacyLayouts\GridCalc.cs (1)
515
_rows.Add(new
RowDefinition
());
RadioButton\RadioButton.cs (1)
468
new
RowDefinition
{ Height = GridLength.Auto }
RowDefinitionCollectionTypeConverter.cs (1)
30
definitions[i] = new
RowDefinition
{ Height = (GridLength)converter.ConvertFromInvariantString(lengths[i]) };
Microsoft.Maui.Controls.Foldable (3)
TwoPaneView.cs (3)
241
RowDefinitions = new RowDefinitionCollection() { new
RowDefinition
(), new
RowDefinition
(), new
RowDefinition
() };
34 references to RowDefinition
Microsoft.Maui.Controls (31)
Layout\Grid.cs (2)
114
ReadOnlyCastingList<IGridRowDefinition,
RowDefinition
> _rowDefs;
185
public void AddRowDefinition(
RowDefinition
gridRowDefinition)
LegacyLayouts\Grid.cs (2)
188
List<
RowDefinition
> rowDefinitions = structure.Rows;
277
RowDefinition
rowdef = rowDefs[i];
LegacyLayouts\GridCalc.cs (22)
75
RowDefinition
r = structure.Rows[index];
96
List<
RowDefinition
> _rows = new List<
RowDefinition
>();
101
public List<
RowDefinition
> Rows => _rows;
126
RowDefinition
row = _rows[index];
159
RowDefinition
row = _rows[index];
182
RowDefinition
row = _rows[i];
260
RowDefinition
row = _rows[index];
283
RowDefinition
r = _rows[index];
345
RowDefinition
r = _rows[index];
356
RowDefinition
row = _rows[index];
444
var
row = _rows[n];
481
RowDefinition
row = _rows[index];
494
_rows = grid.RowDefinitions == null ? new List<
RowDefinition
>() : grid.RowDefinitions.ToList();
524
RowDefinition
row = _rows[index];
563
RowDefinition
row = GetLastAutoRow(child);
630
RowDefinition
row = _rows[index];
640
RowDefinition
row = _rows[index];
717
RowDefinition
row = _rows[i];
754
RowDefinition
row = _rows[index];
780
RowDefinition
row = _rows[index];
856
RowDefinition
GetLastAutoRow(BindableObject child)
RowDefinition.cs (2)
10
public static readonly BindableProperty HeightProperty = BindableProperty.Create(nameof(Height), typeof(GridLength), typeof(
RowDefinition
), GridLength.Star,
11
propertyChanged: (bindable, oldValue, newValue) => ((
RowDefinition
)bindable).OnSizeChanged());
RowDefinitionCollection.cs (2)
5
public sealed class RowDefinitionCollection : DefinitionCollection<
RowDefinition
>
11
public RowDefinitionCollection(params
RowDefinition
[] definitions) : base(definitions)
RowDefinitionCollectionTypeConverter.cs (1)
28
var definitions = new
RowDefinition
[lengths.Length];
Microsoft.Maui.Controls.Foldable (3)
TwoPaneView.cs (3)
453
var
rowTop = RowDefinitions[0];
454
var
rowMiddle = RowDefinitions[1];
455
var
rowBottom = RowDefinitions[2];