summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue1898.xaml
blob: 3b5b096e8ec3fd18c0f82563bb7b6904c911a6f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
			 xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
			 x:Class="Xamarin.Forms.Controls.Issue1898"
			 xmlns:local="clr-namespace:Xamarin.Forms.Controls;assembly=Xamarin.Forms.Controls">
	<ContentPage x:Name="Issue1898PageOne" Title="Title 1" Icon="bank.png">
		<StackLayout>
			<Button Text="Change Title 1" Command="{Binding ChangeTitleOneCommand}" />
			<Button Text="Change Icon 1" Command="{Binding ChangeIconOneCommand}" />
			<Button Text="Change Icon other page 1" Command="{Binding ChangeIconOtherPageOneCommand}" />
		</StackLayout>
	</ContentPage>
	<ContentPage x:Name="Issue1898PageTwo" Title="Title 2" Icon="calculator.png">
		<StackLayout>
			<Button Text="Change Title 2" Command="{Binding ChangeTitleTwoCommand}" />
			<Button Text="Change Icon 2" Command="{Binding ChangeIconTwoCommand}" />
			<Button Text="Change Icon other page 2" Command="{Binding ChangeIconOtherPageTwoCommand}" />
		</StackLayout>
	</ContentPage>
</TabbedPage>