Pivot / Panorama Wp8上的标题标题

时间:2013-03-02 08:55:25

标签: c# windows windows-phone-8

Twitter Example

如何在标题标题旁边显示图标。示例是上面WP8上的Twitter应用程序。提前谢谢。

1 个答案:

答案 0 :(得分:2)

创建自定义HeaderTemplate,它会显示图标而不是标题文字:

<controls:Pivot Title="Altered Styles">
    <controls:Pivot.HeaderTemplate>  
        <!-- This changes to look of the items headers -->
        <DataTemplate>
            <!-- show image here -->
        </DataTemplate>
    </controls:Pivot.HeaderTemplate>
</controls:Pivot>

您也可以使用Panorama控件执行此操作。