maui-linux/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issu.../Bugzilla31967.xaml

18 строки
612 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="Xamarin.Forms.Controls.Bugzilla31967">
<Grid VerticalOptions="Start"
Padding = "20">
<Grid.RowDefinitions>
<RowDefinition Height="auto" />
<RowDefinition Height="{Binding Path=ToolbarHeight,Mode=TwoWay}" />
</Grid.RowDefinitions>
<Button Text="Click"
Command="{Binding Fire}"/>
<Label Grid.Row="1"
Text="Hello there"
BackgroundColor="Red"
VerticalOptions="FillAndExpand"/>
</Grid>
</ContentPage>