6 writes to Height
Microsoft.Maui (1)
Layouts\Flex.cs (1)
391
Height
= height;
Microsoft.Maui.Controls (5)
Layout\FlexLayout.cs (2)
451
item.
Height
= height < 0 ? float.NaN : (float)height;
587
_root.
Height
= !double.IsPositiveInfinity((height)) ? (float)height : 0;
LegacyLayouts\FlexLayout.cs (3)
339
item.
Height
= height < 0 ? float.NaN : (float)height;
369
item.
Height
= ((View)sender).HeightRequest < 0 ? float.NaN : (float)((View)sender).HeightRequest;
491
_root.
Height
= !double.IsPositiveInfinity((height)) ? (float)height : 0;
6 references to Height
Microsoft.Maui (4)
Layouts\Flex.cs (4)
433
if (Double.IsNaN(Width) || Double.IsNaN(
Height
))
437
layout_item(this, Width,
Height
, inMeasureMode);
474
child.Frame[3] = absolute_size(child.
Height
, child.Top, child.Bottom, height);
487
child.Frame[3] = child.
Height
;
Microsoft.Maui.Controls (2)
Layout\FlexExtensions.cs (2)
25
if (heightConstraint < 0 && !float.IsNaN(parent.
Height
))
26
heightConstraint = (double)parent.
Height
;