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)
484 HeightRequest = 21, 495 HeightRequest = 11,
TitleBar\TitleBar.cs (1)
394 HeightRequest = 16,
17 references to HeightRequest
Microsoft.Maui.Controls (17)
Compatibility\Handlers\Shell\iOS\ShellTableViewSource.cs (4)
119 if (view.View.HeightRequest >= 0) 121 height = (float)view.View.HeightRequest; 122 (view.View as IView).Measure(tableView.Bounds.Width, view.View.HeightRequest); 124 .PlatformView.Frame = new CoreGraphics.CGRect(0, 0, tableView.Bounds.Width, view.View.HeightRequest);
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)
415 /// <summary>Bindable property for <see cref="HeightRequest"/>.</summary> 416 public static readonly BindableProperty HeightRequestProperty = BindableProperty.Create(nameof(HeightRequest), typeof(double), typeof(VisualElement), -1d, propertyChanged: OnRequestChanged); 601 /// <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> 1130 double heightRequest = HeightRequest; 1697 if (element.HeightRequest >= 0) 2056 var value = HeightRequest;