Functionality14.xaml 756 Bytes
Newer Older
Mattia's avatar
Mattia committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?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="SampleApp.Views.Functionality14">
    <ContentPage.Content>
        <Grid VerticalOptions="Center" HorizontalOptions="Center">
            <Grid.RowDefinitions>
                <RowDefinition Height="auto" ></RowDefinition>
                <RowDefinition Height="auto"></RowDefinition>
            </Grid.RowDefinitions>
            <Label Text="Text 1: this is text number one." Grid.Row="0" x:Name="TextToRead"></Label>
            <Button Text="Read Text 1 with screen reader off" Grid.Row="1" Clicked="Button_Clicked"></Button>
        </Grid>

    </ContentPage.Content>
</ContentPage>