我想制作一个类似 Microsoft Store 的导航视图。
到目前为止,我已经做到了。
但是有两个问题。
- 图标和文本未居中。
- 选择指标非常小。
我怎么解决这个问题。这是我的 xaml。
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Torrent"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
xmlns:Custom="using:System.Numerics"
x:Class="Torrent.MainPage"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<muxc:NavigationView
x:Name="nvSample"
IsBackButtonVisible="Collapsed" IsPaneToggleButtonVisible="False" PaneDisplayMode="LeftCompact" CompactPaneLength="80" FontSize="24" >
<muxc:NavigationView.MenuItems>
<!--<muxc:NavigationViewItem Icon="Play" Content="Menu Item1" Tag="SamplePage1" />-->
<muxc:NavigationViewItem Tag="SamplePage1" Height="80" BackgroundSizing="OuterBorderEdge">
<StackPanel HorizontalAlignment="Center">
<TextBlock Text="" FontFamily="Segoe Fluent Icons" FontSize="26" HorizontalAlignment="Center" />
<TextBlock Text="All" HorizontalAlignment="Center" />
</StackPanel>
</muxc:NavigationViewItem>
</muxc:NavigationView.MenuItems>
<Frame x:Name="contentFrame"/>
</muxc:NavigationView>