-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAppShell.xaml
32 lines (29 loc) · 1.05 KB
/
AppShell.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="UdpQuickShare.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:UdpQuickShare"
xmlns:page="clr-namespace:UdpQuickShare.Pages"
Shell.FlyoutBehavior="Disabled">
<TabBar Title="UdpQuickShare" >
<Tab Title="发送"
Route="MainPage">
<ShellContent ContentTemplate="{DataTemplate local:MainPage}"/>
</Tab>
<Tab Title="发送的"
Route="SendingFiles">
<ShellContent ContentTemplate="{DataTemplate page:SendingFiles}"
/>
</Tab>
<Tab Title="接收"
Route="RecievingFiles">
<ShellContent ContentTemplate="{DataTemplate page:RecievedFiles}"
/>
</Tab>
<Tab Title="设置"
Route="Setting">
<ShellContent ContentTemplate="{DataTemplate page:SaveFolderSetter}"/>
</Tab>
</TabBar>
</Shell>