34 строки
1.5 KiB
XML
34 строки
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<controls:TestContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:controls="clr-namespace:Xamarin.Forms.Controls;assembly=Xamarin.Forms.Controls"
|
|
x:Class="Xamarin.Forms.Controls.Issues.Issue2858">
|
|
<ContentPage.Content>
|
|
<Grid>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto" ></RowDefinition>
|
|
<RowDefinition Height="Auto" ></RowDefinition>
|
|
<RowDefinition Height="*" ></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
|
|
<Label Text="Tap the red box below. Then tap the green area outside the box. If 'Success' is visible below, this test has passed."></Label>
|
|
|
|
<Label Grid.Row="1" Text="Running..." x:Name="Result"></Label>
|
|
|
|
<Grid Grid.Row="2" BackgroundColor="Blue" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand"
|
|
AutomationId="TapGrid">
|
|
<Grid.GestureRecognizers>
|
|
<TapGestureRecognizer Tapped="TapGestureRecognizer_OnTapped" />
|
|
</Grid.GestureRecognizers>
|
|
</Grid>
|
|
<Grid Grid.Row="2" RowSpacing="0" ColumnSpacing="0" InputTransparent="True" CascadeInputTransparent="False"
|
|
Padding="10" BackgroundColor="Green" AutomationId="OuterGrid">
|
|
<Grid BackgroundColor="Red" HorizontalOptions="Center" WidthRequest="300" VerticalOptions="Center"
|
|
HeightRequest="300" AutomationId="InnerGrid">
|
|
|
|
</Grid>
|
|
</Grid>
|
|
</Grid>
|
|
</ContentPage.Content>
|
|
</controls:TestContentPage> |