maui-linux/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issu.../Issue2357.xaml

21 строка
823 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<MasterDetailPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="Xamarin.Forms.Controls.Issue2357" IsBusy="{Binding IsBusy}">
<MasterDetailPage.Master>
<ContentPage Title="Menu" Icon="menuIcon.png">
<StackLayout Spacing="0">
<ContentView Padding="10,36,0,5" BackgroundColor="Transparent">
<Label Text="MENU" Font="Medium">
</Label>
</ContentView>
<ListView ItemsSource="{Binding MainMenuItems}" ItemTapped="ListViewOnItemTapped">
<ListView.ItemTemplate>
<DataTemplate>
<TextCell Text="{Binding Title}">
</TextCell>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
</StackLayout>
</ContentPage>
</MasterDetailPage.Master>
</MasterDetailPage>