36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
||
<Shell
|
||
x:Class="Phonebook.AppShell"
|
||
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
xmlns:local="clr-namespace:Phonebook"
|
||
BackgroundColor="{DynamicResource PageBackgroundColor}"
|
||
ForegroundColor="{DynamicResource Primary}">
|
||
<Shell.FlyoutHeader>
|
||
<StackLayout Margin="15"/>
|
||
</Shell.FlyoutHeader>
|
||
|
||
<FlyoutItem Title="Телефоный справочник">
|
||
<ShellContent
|
||
ContentTemplate="{DataTemplate local:MainPage}"
|
||
Route="MainPage" />
|
||
</FlyoutItem>
|
||
|
||
<FlyoutItem Title="Настройки">
|
||
<ShellContent
|
||
ContentTemplate="{DataTemplate local:SettingsPage}"
|
||
Route="SettingsPage"/>
|
||
</FlyoutItem>
|
||
|
||
<Shell.FlyoutFooter>
|
||
<StackLayout Spacing="5" Orientation="Vertical">
|
||
<Button Margin="5" Text="Экспорт в XLS"
|
||
Clicked="MenuItem_OnClicked"
|
||
BackgroundColor="{DynamicResource Primary}"/>
|
||
<Button Margin="5" Text="Импорт контактов с телефона"
|
||
Clicked="ImportButton_OnClicked"
|
||
BackgroundColor="{DynamicResource Primary}"/>
|
||
</StackLayout>
|
||
</Shell.FlyoutFooter>
|
||
|
||
</Shell> |