pivot control
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>
前もって感謝します