如何更改 UWP 中选定 ListView 项的样式

How to change style of Selected ListView Item in UWP

我的 UWP 应用程序中有一个包含此代码的 ListView。

<ListView Name="menuListView" HorizontalAlignment="Center" 
              Grid.Row="1" SelectionChanged="ListView_SelectionChanged" 
              BorderThickness="0,0,0,5" SelectedIndex="0"
              Grid.ColumnSpan="2">

        <ListView.ItemsPanel>
            <ItemsPanelTemplate>
            <StackPanel Orientation="Horizontal"></StackPanel>
        </ItemsPanelTemplate>
         </ListView.ItemsPanel>
        <TextBlock Name="dayTB"  Text="Day" Margin="25 0 0 0" FontSize="18" />
        <TextBlock Name="weekTB" Text="Week" Margin="25 0 0 0" FontSize="18" />
        <TextBlock Name="monthTB" Text="Month" Margin="25 0 0 0" FontSize="18" />

    </ListView>

看起来像这样。

我尝试让它看起来像这样已经有一段时间了,但我的尝试并不成功。

有办法实现吗? 任何帮助将不胜感激。

图中右边使用的控件是Pivot,不是ListView

试试这个基本的 Pivot XAML 代码,然后玩转它

<Pivot Title="EMAIL">
<PivotItem Header="All">
<TextBlock Text="all emails go here." />
</PivotItem>
<PivotItem Header="Unread">
<TextBlock Text="unread emails go here." />
</PivotItem>
<PivotItem Header="Flagged">
<TextBlock Text="flagged emails go here." />
</PivotItem>
<PivotItem Header="Urgent">
<TextBlock Text="urgent emails go here." />
</PivotItem>
</Pivot>