1

我希望能够在我的应用程序中创建自定义数据透视页面标题样式,以便我可以在多个页面中使用它。本质上,我只是希望 Pivot 的标题以特定的字体大小和类型居中。最初我使用图像作为我的标题,但我真的需要一个文本标题。我该怎么做呢?我已经尝试在 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>

主页.xaml

<phone:Pivot x:Name="mainPagePivotControl" Style="{StaticResource PivotStyle}">            
        <phone:Pivot.TitleTemplate>
            <DataTemplate>
                <Image Style="{StaticResource ApplicationName}"/>
            </DataTemplate>
        </phone:Pivot.TitleTemplate>
        ...
</phone:Pivot>
4

0 回答 0