Windows Phone 8编辑页眉数据透视页

本文关键字:透视 数据 编辑 Phone Windows | 更新日期: 2023-09-27 18:28:46

我正在创建WP应用程序,并希望创建下一个设计数据透视页:图片

我找到了xaml风格的代码,但这不是我需要的。

    <Style x:Key="MainPivotStyle" TargetType="phone:Pivot">
    <Setter Property="Margin" Value="0" />
    <Setter Property="Padding" Value="0" />
    <Setter Property="Foreground" Value="{StaticResource PhoneForegroundBrush}" />
    <Setter Property="Background" Value="Transparent" />
    <Setter Property="ItemsPanel">
        <Setter.Value>
            <ItemsPanelTemplate>
                <Grid />
            </ItemsPanelTemplate>
        </Setter.Value>
    </Setter>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="phone:Pivot">
                <Grid HorizontalAlignment="{TemplateBinding HorizontalAlignment}" VerticalAlignment="{TemplateBinding VerticalAlignment}">
                    <Grid.RowDefinitions>
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="Auto" />
                        <RowDefinition Height="*" />
                    </Grid.RowDefinitions>
                    <Grid Grid.RowSpan="2"
                          Background="DodgerBlue"
                          CacheMode="BitmapCache" />
                    <ContentPresenter Grid.Row="0"
                                      Margin="24,17,0,-7"
                                      Content="{TemplateBinding Title}"
                                      ContentTemplate="{TemplateBinding TitleTemplate}" />
                    <primitives:PivotHeadersControl x:Name="HeadersListElement" Grid.Row="1" />
                    <Grid Grid.Row="2"
                          Background="{TemplateBinding Background}"
                          CacheMode="BitmapCache" />
                    <ItemsPresenter x:Name="PivotItemPresenter"
                                    Grid.Row="2"
                                    Margin="{TemplateBinding Padding}" />
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

告诉我如何做这种风格?

Windows Phone 8编辑页眉数据透视页

ChubosaurusSoftware我想更改活动项目透视页面的样式。

如果是这样的话,我已经回答了。你得到了唯一需要的部分Templates

请参见如何设置数据透视项目标题的样式。这是一个完整的解决方案,可以更改选定数据透视标头的背景/前景。注意到Storyboards

如果您正在修改头模板,则需要基元控件命名空间

<phone:PhoneApplicationPage
    xmlns:Primitives="clr-namespace:Microsoft.Phone.Controls.Primitives;assembly=Microsoft.Phone" x:Name="phoneApplicationPage">

有用的SO链接

如何设置所选数据透视项标题的样式


如果您需要更多帮助,那么您想将数据透视表页眉设置为什么样式?带有SelectedItem底部边框的图像?