Functionality22.xaml 839 Bytes
Newer Older
Mattia's avatar
Mattia committed
1 2 3 4 5 6 7 8 9 10
<?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.Functionality22">
    <StackLayout VerticalOptions="Center" HorizontalOptions="Center">
        <Label Text="" x:Name="labelAv" HorizontalTextAlignment="Center"></Label>
        <Label Text="Click on show header button to check witch view is header" x:Name="label1" HorizontalTextAlignment="Center"></Label>
        <Label Text="Click on show pane button to check witch view has a pane title" x:Name="label2" HorizontalTextAlignment="Center"></Label>
        <Button Text="Show header" Clicked="Button_Clicked" x:Name="button1"></Button>
        <Button Text="Show pane" Clicked="Button_Clicked1" x:Name="button2"></Button>
    </StackLayout>
</ContentPage>