You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.8 KiB
47 lines
1.8 KiB
|
1 week ago
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||
|
|
<Shell
|
||
|
|
x:Class="SunlightAggregationTerminal.AppShell"
|
||
|
|
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
||
|
|
xmlns:local="clr-namespace:SunlightAggregationTerminal"
|
||
|
|
Title="SunlightAggregationTerminal"
|
||
|
|
Loaded="Shell_Loaded"
|
||
|
|
Shell.FlyoutBehavior="Disabled">
|
||
|
|
<Shell.Resources>
|
||
|
|
<ResourceDictionary>
|
||
|
|
<Style TargetType="TabBar">
|
||
|
|
<!-- 核心代码:半透明白色 (Alpha值CC约80%不透明度) -->
|
||
|
|
<!-- 视觉上非常像磨砂玻璃,且兼容所有平台 -->
|
||
|
|
<Setter Property="Shell.TabBarBackgroundColor" Value="#CCF0F0F0" />
|
||
|
|
<!-- 设置选中时的标题颜色(建议深色) -->
|
||
|
|
<Setter Property="Shell.TabBarTitleColor" Value="#333333" />
|
||
|
|
<!-- 设置未选中时的图标和标题颜色 -->
|
||
|
|
<Setter Property="Shell.TabBarUnselectedColor" Value="#888888" />
|
||
|
|
</Style>
|
||
|
|
</ResourceDictionary>
|
||
|
|
</Shell.Resources>
|
||
|
|
<TabBar>
|
||
|
|
<!-- 1 信息页面 -->
|
||
|
|
<ShellContent
|
||
|
|
Title="信息"
|
||
|
|
Icon="infofeed.png"
|
||
|
|
ContentTemplate="{DataTemplate local:InfoPage}"/>
|
||
|
|
<!-- 2 查询页面 -->
|
||
|
|
<ShellContent
|
||
|
|
Title="查询"
|
||
|
|
Icon="search.png"
|
||
|
|
ContentTemplate="{DataTemplate local:QueryPage}"/>
|
||
|
|
<!-- 3 通知页面 -->
|
||
|
|
<ShellContent
|
||
|
|
Title="通知"
|
||
|
|
Icon="ixnotifications.png"
|
||
|
|
ContentTemplate="{DataTemplate local:NotificationPage}"/>
|
||
|
|
<!-- 4 我的页面 -->
|
||
|
|
<ShellContent
|
||
|
|
Title="我"
|
||
|
|
Icon="adduserfilled.png"
|
||
|
|
ContentTemplate="{DataTemplate local:ProfilePage}"/>
|
||
|
|
|
||
|
|
</TabBar>
|
||
|
|
</Shell>
|