我的UWP应用程序中有一个带有此代码的ListView。
:geographic
看起来像这样。
我试图让它看起来像这样一段时间了,但是我的尝试没有成功。
有没有办法实现这个目标? 任何帮助将不胜感激。
答案 0 :(得分:1)
图片中使用的右侧控件是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>