我希望能够在我的应用程序中创建自定义数据透视表页面标题样式,以便我可以在多个页面中使用它。基本上我只是希望Pivot的标题以某种字体大小和类型为中心。最初我使用Image作为我的标题,但我真的需要一个文本标题。我该怎么做呢?我已经尝试在App.xaml中设置它并在我的MainPage.xaml中使用它,但到目前为止我没有任何工作。
App.xaml(原创)
<Style x:Key="ApplicationName" TargetType="Image">
<Setter Property="Height" Value="50"/>
<Setter Property="Width" Value="92.85"/>
<Setter Property="Margin" Value="-3,0,0,0"/>
<Setter Property="Source" Value="/Assets/ApplicationTitle.png"/>
</Style>
MainPage.xaml中
<phone:Pivot x:Name="mainPagePivotControl" Style="{StaticResource PivotStyle}">
<phone:Pivot.TitleTemplate>
<DataTemplate>
<Image Style="{StaticResource ApplicationName}"/>
</DataTemplate>
</phone:Pivot.TitleTemplate>
...
</phone:Pivot>