Windows Phone 8:删除数据透视表头

Dan*_*cho 5 pivotitem windows-phone-8

我的枢轴控制的造型有一个奇怪的问题.我在Expression Blend中编辑了默认模板的副本,因为我想删除整个标题.

适应的风格:

<Style x:Key="PivotWithoutHeader" 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 Background="{TemplateBinding Background}" Grid.RowSpan="3"/>
                        <!--<ContentControl ContentTemplate="{TemplateBinding TitleTemplate}" Content="{TemplateBinding Title}" HorizontalAlignment="Left" Margin="24,17,0,-7" Style="{StaticResource PivotTitleStyle}"/>-->
                        <Primitives:PivotHeadersControl x:Name="HeadersListElement" Grid.Row="1"/>
                        <ItemsPresenter x:Name="PivotItemPresenter" Margin="{TemplateBinding Padding}" Grid.Row="2"/>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
Run Code Online (Sandbox Code Playgroud)

而我的风格用法:

<phone:Pivot Grid.Row="1" x:Name="Objects" ItemsSource="{Binding Profiles}" 
                                 Style="{StaticResource PivotWithoutHeader}">
                        <phone:Pivot.ItemContainerStyle>
                            <Style TargetType="phone:PivotItem">
                                <Setter Property="HorizontalAlignment" Value="Stretch" />
                            </Style>
                        </phone:Pivot.ItemContainerStyle>
                        <phone:Pivot.ItemTemplate>
                            <DataTemplate>
                                <Grid>
                                    <Image Source="Resources/homer.png"/>
                                    <TextBlock Text="{Binding Name}"/>
                                    <TextBlock Text="#Sample" />
                                    <Button Margin="347,0,0,0" Command="{Binding DataContext.SettingsCommand, ElementName=Objects}" CommandParameter="{Binding .}" />
                                </Grid>
                            </DataTemplate>
                        </phone:Pivot.ItemTemplate>
                    </phone:Pivot>
Run Code Online (Sandbox Code Playgroud)

我的想法是删除或设置<Primitives:PivotHeadersControl> 折叠的可见性,但然后我的应用程序崩溃没有任何异常和我的输出窗口中的以下消息:"程序'[2332] TaskHost.exe已退出代码-1073741819(0xc0000005)出现"访问违规".

我读了一些帖子来提升枢轴,使标题不在屏幕上,但我需要在我页面底部的自定义枢轴,上面有一些其他控件.

有没有人知道如何删除标题?

编辑:为清楚起见,我想删除标题和标题.

dBl*_*sse 8

您可以通过使用空白DataTemplate替换Pivot.HeaderTemplate属性来删除数据透视表控件上的PivotItem标头.如果你想删除Title而不是Header,那么我也想知道解决方案.^^

<phone:Pivot ItemsSource="{Binding Data}" ItemTemplate="{StaticResource CustomPivotItemTemplate}">
    <phone:Pivot.HeaderTemplate>
        <DataTemplate/>
    </phone:Pivot.HeaderTemplate>
</phone:Pivot>
Run Code Online (Sandbox Code Playgroud)


Dan*_*cho 1

因此,删除标题和标题在 Windows Phone 8 上不再起作用。因此,我将现有控件从http://www.codeproject.com/Articles/136786/Creating-an-Animated-ContentControl移植到 Windows Phone 8 。