13 writes to VerticalOptions
Microsoft.Maui.Controls (11)
IndicatorView\IndicatorStackLayout.cs (1)
140 VerticalOptions = LayoutOptions.Center,
LegacyLayouts\RelativeLayout.cs (1)
42 VerticalOptions = HorizontalOptions = LayoutOptions.FillAndExpand;
ListView\ListView.cs (1)
108 VerticalOptions = HorizontalOptions = LayoutOptions.FillAndExpand;
RadioButton\RadioButton.cs (3)
483 VerticalOptions = LayoutOptions.Center, 494 VerticalOptions = LayoutOptions.Center, 504 VerticalOptions = LayoutOptions.Fill
RefreshView\RefreshView.cs (1)
22 VerticalOptions = HorizontalOptions = LayoutOptions.FillAndExpand;
TableView\TableView.cs (1)
41 VerticalOptions = HorizontalOptions = LayoutOptions.FillAndExpand;
TitleBar\TitleBar.cs (3)
395 VerticalOptions = LayoutOptions.Center, 419 VerticalOptions = LayoutOptions.Center, 472 VerticalOptions = LayoutOptions.Center,
Microsoft.Maui.Controls.Foldable (1)
TwoPaneView.cs (1)
236 this.VerticalOptions = LayoutOptions.Fill;
Microsoft.Maui.Controls.Maps (1)
Map.cs (1)
58 VerticalOptions = HorizontalOptions = LayoutOptions.FillAndExpand;
20 references to VerticalOptions
Microsoft.Maui.Controls (20)
ContentPresenter.cs (1)
80 if (isFixedVertically && view.VerticalOptions.Alignment == LayoutAlignment.Fill)
Layout\AndExpandLayoutManager.cs (1)
70 if (child is View view && view.VerticalOptions.Expands)
Layout\StackLayoutManager.cs (1)
57 if (orientation == StackOrientation.Vertical && view.VerticalOptions.Expands)
LegacyLayouts\AbsoluteLayout.cs (1)
118 if (view.VerticalOptions.Alignment == LayoutAlignment.Fill &&
LegacyLayouts\Grid.cs (1)
176 LayoutOptions vOptions = view.VerticalOptions;
LegacyLayouts\Layout.cs (3)
212 /// Positions a child element into a bounding region while respecting the child elements <see cref="View.HorizontalOptions" /> and <see cref="View.VerticalOptions" />. 260 LayoutOptions verticalOptions = view.VerticalOptions; 524 LayoutOptions verticalOptions = child.VerticalOptions;
LegacyLayouts\StackLayout.cs (4)
163 if (child.VerticalOptions.Expands) 363 if ((Constraint & LayoutConstraint.VerticallyFixed) != 0 && view.VerticalOptions.Alignment == LayoutAlignment.Fill) 383 if (isOnlyExpander && view.VerticalOptions.Alignment == LayoutAlignment.Fill && Constraint == LayoutConstraint.Fixed) 432 if (child.VerticalOptions.Expands)
RadioButton\RadioButton.cs (1)
458 border.SetBinding(VerticalOptionsProperty, static (RadioButton rb) => rb.VerticalOptions, source: RelativeBindingSource.TemplatedParent);
ScrollView\ScrollView.cs (1)
327 LayoutOptions vOptions = view.VerticalOptions;
TemplatedPage.cs (1)
28 LayoutOptions vOptions = view.VerticalOptions;
TemplatedView\TemplatedView.cs (1)
71 if (isFixedVertically && view.VerticalOptions.Alignment == LayoutAlignment.Fill)
View\View.cs (4)
24 /// <summary>Bindable property for <see cref="VerticalOptions"/>.</summary> 26 BindableProperty.Create(nameof(VerticalOptions), typeof(LayoutOptions), typeof(View), LayoutOptions.Fill, 247 /// Assigning <see cref="VerticalOptions"/> modifies how the element is arrange when there is excess space available along the Y axis from the parent layout. 308 Primitives.LayoutAlignment IView.VerticalLayoutAlignment => VerticalOptions.ToCore();