能否自定义hub或者panorama app的默认样式

Can we customize the default style of hub or panorama app

我正在尝试自定义 WP8 中的中心或全景样式。我可以通过自定义默认中心或全景样式来制作屏幕 1 吗?我在更改默认 Screen 2 样式时遇到问题。这可能吗?如何实现?

我只想创建一个自定义 header

<phone:PhoneApplicationPage.Resources>
        <Style x:Key="ItemHeaderCustomStyle" TargetType="TextBlock">          
            <Setter Property="FontSize" Value="44"/>
            <Setter Property="Margin" Value="-12,24,30,0"/>
            <Setter Property="CharacterSpacing" Value="-35"/>
            <Setter Property="Foreground" Value="#EEEEEE"/>
            <Setter Property="HorizontalAlignment" Value="Center"/>
            <Setter Property="VerticalAlignment" Value="Center"/>
        </Style>
    </phone:PhoneApplicationPage.Resources>   
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <phone:Pivot>                    
            <phone:PivotItem>
                <phone:PivotItem.Header>
                    <TextBlock Text="main" Style="{StaticResource ItemHeaderCustomStyle}"/>
                </phone:PivotItem.Header> 
                <StackPanel/>
            </phone:PivotItem>

            <phone:PivotItem>
                <phone:PivotItem.Header>
                    <TextBlock Text="view" Style="{StaticResource ItemHeaderCustomStyle}"/>
                </phone:PivotItem.Header> 
                <StackPanel/>
            </phone:PivotItem>

            <phone:PivotItem >
                <phone:PivotItem.Header>
                    <TextBlock Text="features" Style="{StaticResource ItemHeaderCustomStyle}"/>
                </phone:PivotItem.Header>
                <StackPanel/>
            </phone:PivotItem>
        </phone:Pivot>
    </Grid>