Files
Phonebook/AppShell.xaml
2026-04-09 13:10:02 +03:00

36 lines
1.3 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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>