2016-05-21 77 views
2

我有我的UWP應用程序中的ListView與此代碼。如何更改在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> 

看起來像這樣。

enter image description here

我想使它看起來像這個相當長的一段時間了,但我的嘗試都沒有成功。

enter image description here

有沒有辦法來實現這一目標? 任何幫助,將不勝感激。

回答

1

圖片中使用的右側控件是透視圖,而不是ListView。

試試這個基本支點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> 
周圍玩
相關問題