1 implementation of Height
Microsoft.Maui.Controls (1)
VisualElement\VisualElement.cs (1)
2035
double IView.
Height
15 references to Height
Microsoft.Maui (12)
Handlers\View\ViewHandler.cs (2)
41
[nameof(IView.
Height
)] = MapHeight,
231
/// Maps the abstract <see cref="IView.
Height
"/> property to the platform-specific implementations.
Layouts\AbsoluteLayoutManager.cs (1)
53
var finalHeight = ResolveConstraints(heightConstraint, AbsoluteLayout.
Height
, measuredHeight, AbsoluteLayout.MinimumHeight, AbsoluteLayout.MaximumHeight);
Layouts\FlexLayoutManager.cs (1)
67
var finalHeight = LayoutManager.ResolveConstraints(heightConstraint, FlexLayout.
Height
, measuredHeight + padding.VerticalThickness,
Layouts\GridLayoutManager.cs (1)
89
_explicitGridHeight = _grid.
Height
;
Layouts\HorizontalStackLayoutManager.cs (1)
39
var finalHeight = ResolveConstraints(heightConstraint, Stack.
Height
, measuredHeight, Stack.MinimumHeight, Stack.MaximumHeight);
Layouts\LayoutExtensions.cs (5)
58
if (view.VerticalLayoutAlignment == LayoutAlignment.Fill && !IsExplicitSet(view.
Height
))
114
if (alignment == LayoutAlignment.Fill && (IsExplicitSet(view.
Height
) || !double.IsInfinity(view.MaximumHeight)))
121
desiredHeight = IsExplicitSet(view.
Height
) ? desiredHeight : Math.Min(bounds.Height, view.MaximumHeight);
154
if (Dimension.IsExplicitSet(contentView.
Height
))
156
heightConstraint = contentView.
Height
;
Layouts\VerticalStackLayoutManager.cs (1)
40
var finalHeight = ResolveConstraints(heightConstraint, Stack.
Height
, measuredHeight, Stack.MinimumHeight, Stack.MaximumHeight);
Microsoft.Maui.Controls (3)
Editor\Editor.cs (1)
156
(!IsExplicitSet(view.Width) || !IsExplicitSet(view.
Height
))
Layout\FlexLayout.cs (1)
423
_ => view.
Height
VisualElement\VisualElement.cs (1)
1710
fe.Handler?.UpdateValue(nameof(IView.
Height
));