зеркало из https://github.com/DeGsoft/maui-linux.git
14 строки
527 B
XML
14 строки
527 B
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"
|
|
Title="Repro"
|
|
ItemsSource="{Binding Tabs}"
|
|
x:Class="Xamarin.Forms.Controls.Issues.Bugzilla45284">
|
|
<TabbedPage.ItemTemplate>
|
|
<DataTemplate>
|
|
<ContentPage Title="{Binding Title}" Icon="{Binding Icon}">
|
|
<Label>Hello</Label>
|
|
</ContentPage>
|
|
</DataTemplate>
|
|
</TabbedPage.ItemTemplate>
|
|
</TabbedPage> |