19 lines
746 B
XML
19 lines
746 B
XML
<?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="Samples.Navigation.NavigationSecondPage"
|
|
Title="The Second Page">
|
|
<ContentPage.Content>
|
|
<StackLayout>
|
|
<Label Text="This is the second page."
|
|
VerticalOptions="Center"
|
|
HorizontalOptions="CenterAndExpand" />
|
|
<Button Clicked="BackButton_Clicked"
|
|
Text="Go back to First Page" />
|
|
<Button Clicked="Button_Clicked"
|
|
Text="Navigate to Third Page" />
|
|
|
|
</StackLayout>
|
|
</ContentPage.Content>
|
|
</ContentPage>
|