5 writes to HeightRequest
Microsoft.Maui.Controls (5)
IndicatorView\IndicatorStackLayout.cs (1)
143
HeightRequest
= indicatorSize,
Internals\ProfilePage.cs (1)
117
var buttonA = new Button() { Text = "0s",
HeightRequest
= 62 };
RadioButton\RadioButton.cs (2)
478
HeightRequest
= 21,
489
HeightRequest
= 11,
TitleBar\TitleBar.cs (1)
408
HeightRequest
= 16,
16 references to HeightRequest
Microsoft.Maui.Controls (16)
ContentPresenter.cs (1)
55
double heightRequest =
HeightRequest
;
Editor\Editor.cs (2)
152
_previousHeightRequest ==
HeightRequest
&&
179
_previousHeightRequest =
HeightRequest
;
LegacyLayouts\FlexLayout.cs (2)
369
item.Height = ((View)sender).
HeightRequest
< 0 ? float.NaN : (float)((View)sender).
HeightRequest
;
Shapes\Shape.cs (3)
407
if (!double.IsInfinity(heightConstraint) ||
HeightRequest
> 0)
409
result.Height =
HeightRequest
< 0 ? heightConstraint :
HeightRequest
;
TemplatedView\TemplatedView.cs (1)
50
double heightRequest =
HeightRequest
;
VisualElement\VisualElement.cs (7)
419
/// <summary>Bindable property for <see cref="
HeightRequest
"/>.</summary>
420
public static readonly BindableProperty HeightRequestProperty = BindableProperty.Create(nameof(
HeightRequest
), typeof(double), typeof(VisualElement), -1d, propertyChanged: OnRequestChanged);
605
/// <para><see cref="
HeightRequest
"/> does not immediately change the <see cref="Bounds"/> of an element; setting the <see cref="
HeightRequest
"/> will change the resulting height of the element during the next layout pass.</para>
1134
double heightRequest =
HeightRequest
;
1701
if (element.
HeightRequest
>= 0)
2053
var value =
HeightRequest
;