summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Bugzilla31967.xaml
blob: 3cc33841ed40a18d4a1bec6ac1b6d06a20c77418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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>