20 строки
1.0 KiB
XML
20 строки
1.0 KiB
XML
<?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> |