我正在开发一个简单的应用程序来学习wp7中的枢轴控制.
原文链接:https://www.f2er.com/windows/366517.html我们可以添加枢轴项目的图像而不是标题中的文本(波纹管图像中的红色标记区域).
我的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>
提前致谢