2016-03-22 23:02:25 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-11-07 01:00:08 +03:00
|
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="Xamarin.Forms.Controls.Issues.Issue1497">
|
2016-03-22 23:02:25 +03:00
|
|
|
<ContentView
|
|
|
|
Grid.Column="0" Grid.Row="0"
|
|
|
|
VerticalOptions="FillAndExpand"
|
|
|
|
HorizontalOptions="FillAndExpand"
|
|
|
|
BackgroundColor="Silver" Padding="5">
|
|
|
|
|
|
|
|
<Grid x:Name="grid" Grid.Column="0" Grid.Row="0" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" BackgroundColor="Green">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label Text="Messages" TextColor="White" HorizontalOptions="FillAndExpand" />
|
|
|
|
<Button
|
|
|
|
Text="GO"
|
|
|
|
TextColor="White"
|
|
|
|
BackgroundColor="Black"
|
|
|
|
Grid.Row="1"
|
|
|
|
HorizontalOptions="FillAndExpand"
|
|
|
|
VerticalOptions="EndAndExpand" />
|
|
|
|
</Grid>
|
|
|
|
</ContentView>
|
|
|
|
</ContentPage>
|