windows-phone-7 – 如何为枢轴项目标题添加图像

前端之家收集整理的这篇文章主要介绍了windows-phone-7 – 如何为枢轴项目标题添加图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发一个简单的应用程序来学习wp7中的枢轴控制.

我们可以添加枢轴项目的图像而不是标题中的文本(波纹管图像中的红色标记区域).

是否可以添加图片,请建议我

我的xaml代码是:

<Grid x:Name="LayoutRoot" Background="Transparent">
    <!--Pivot Control-->
    <controls:Pivot Title="MY APPLICATION" Name="mainPivot">
        <!--Pivot item one-->
        <controls:PivotItem Header="item1">
            <Grid>
                <Image Source="/SchoolList;component/Gallery/child.jpg"/>
            </Grid>
        </controls:PivotItem>

        <!--Pivot item two-->
        <controls:PivotItem Header="item2">
            <Grid>
                <Image Source="/SchoolList;component/Gallery/class.jpg"/>
            </Grid>
        </controls:PivotItem>
    </controls:Pivot>
</Grid>

提前致谢

使用这个提示
<phone:Pivot>
        <phone:Pivot.HeaderTemplate>
            <DataTemplate>
                <Image Source="{Binding}" /> // important
            </DataTemplate>
        </phone:Pivot.HeaderTemplate> 
</phone:Pivot>

然后将您的Pivot项标题设置为

<phone:PivotItem Header="path-to-image" >
原文链接:https://www.f2er.com/windows/366517.html

猜你在找的Windows相关文章