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)
477 HeightRequest = 21, 488 HeightRequest = 11,
TitleBar\TitleBar.cs (1)
408 HeightRequest = 16,
13 references to HeightRequest
Microsoft.Maui.Controls (13)
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;
TemplatedView\TemplatedView.cs (1)
50 double heightRequest = HeightRequest;
VisualElement\VisualElement.cs (7)
418 /// <summary>Bindable property for <see cref="HeightRequest"/>.</summary> 419 public static readonly BindableProperty HeightRequestProperty = BindableProperty.Create(nameof(HeightRequest), typeof(double), typeof(VisualElement), -1d, propertyChanged: OnRequestChanged); 604 /// <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> 1133 double heightRequest = HeightRequest; 1700 if (element.HeightRequest >= 0) 2045 var value = HeightRequest;