Implemented interface member:
property
Height
Microsoft.Maui.IGridRowDefinition.Height
18 writes to Height
Microsoft.Maui.Controls (7)
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 } },
RadioButton\RadioButton.cs (1)
474 new RowDefinition { Height = GridLength.Auto }
RowDefinitionCollectionTypeConverter.cs (1)
30 definitions[i] = new RowDefinition { Height = (GridLength)converter.ConvertFromInvariantString(lengths[i]) };
Microsoft.Maui.Controls.Foldable (11)
TwoPaneView.cs (11)
474 rowMiddle.Height = new GridLength(0, GridUnitType.Absolute); 475 rowTop.Height = GridLength.Star; 476 rowBottom.Height = new GridLength(0, GridUnitType.Absolute); 480 rowMiddle.Height = new GridLength(hinge.Height, GridUnitType.Absolute); 481 rowTop.Height = new GridLength(pane1.Height, GridUnitType.Absolute); 482 rowBottom.Height = new GridLength(pane2.Height, GridUnitType.Absolute); 492 rowMiddle.Height = new GridLength(0, GridUnitType.Absolute); 507 rowTop.Height = ((newMode == ViewMode.TopBottom) ? Pane1Length : Pane2Length); 508 rowBottom.Height = ((newMode == ViewMode.TopBottom) ? Pane2Length : Pane1Length); 512 rowTop.Height = new GridLength(1, GridUnitType.Star); 513 rowBottom.Height = new GridLength(0, GridUnitType.Absolute);
26 references to Height
Microsoft.Maui.Controls (26)
LegacyLayouts\Grid.cs (1)
194 GridLength height = rowDefinitions[i].Height;
LegacyLayouts\GridCalc.cs (22)
77 if (!r.Height.IsStar) 127 if (row.Height.IsStar) 128 totalStarsHeight += row.Height.Value; 160 if (row.Height.IsAbsolute) 161 row.ActualHeight = row.Height.Value; 183 if (!row.Height.IsAuto) 261 if (row.Height.IsStar) 262 row.ActualHeight = row.Height.Value * starRowHeight; 346 if (r.Height.IsAuto) 357 if (!row.Height.IsAuto) 446 if (!row.Height.IsStar) 482 if (!row.Height.IsStar) 487 row.ActualHeight -= delta * row.Height.Value; 631 if (row.Height.IsStar) 641 if (row.Height.IsStar) 642 row.ActualHeight = row.Height.Value * starRowHeight; 718 if (!row.Height.IsStar) 755 if (!row.Height.IsStar || row.Height.Value == 0 || row.ActualHeight <= 0) 758 starRowRequestHeight = Math.Max(starRowRequestHeight, row.ActualHeight / row.Height.Value); 759 starRowMinHeight = Math.Max(starRowMinHeight, row.MinimumHeight / row.Height.Value); 861 if (_rows[i].Height.IsAuto)
RowDefinition.cs (2)
9 /// <summary>Bindable property for <see cref="Height"/>.</summary> 10 public static readonly BindableProperty HeightProperty = BindableProperty.Create(nameof(Height), typeof(GridLength), typeof(RowDefinition), GridLength.Star,
RowDefinitionCollectionTypeConverter.cs (1)
42 return string.Join(", ", rdc.Select(rd => converter.ConvertToInvariantString(rd.Height)));