DataGridHeader外边缘的渐变边框

时间:2013-08-16 19:24:26

标签: wpf xaml datagrid styles

见下图...

enter image description here

这是从使用QT在c ++中创建的应用程序中截取的屏幕截图。我需要通过向我的DataGrid标头的外部垂直边缘添加渐变边框来创建类似的外观,我没有看到DataGrid的属性,这将允许我完成此操作。使用下面的DataGridColumnHeader样式,我已经实现了我在减去外边缘边框后的外观。如何仅将这些边框添加到标题的外部?

<Style TargetType="{x:Type DataGridColumnHeader}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="DataGridColumnHeader">
                <Border BorderBrush="{StaticResource ContentPanelHeaderBackgroundBrush}" 
                        BorderThickness="0,1,0,0"
                        CornerRadius="2,2,0,0">
                    <DockPanel Background="{StaticResource ContentPanelHeaderBackgroundBrush}" Width="auto">
                        <Border BorderThickness="0,1,0,0" DockPanel.Dock="Bottom" BorderBrush ="{StaticResource ContentPanelBottomBorderBrush}" />
                            <Grid Height="22">
                                <Grid.ColumnDefinitions>
                                     <ColumnDefinition Width="*" />
                                     <ColumnDefinition Width="Auto" />
                                </Grid.ColumnDefinitions>
                                <ContentPresenter VerticalAlignment="center" Margin="4" />
                            </Grid>
                    </DockPanel>
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
    <Setter Property="Padding" Value="4,0,4,0" />
    <Setter Property="Foreground" Value="{StaticResource FontActiveBrush}" />
    <Setter Property="FontFamily" Value="{StaticResource MainFont}" />
    <Setter Property="FontSize" Value="11" />
    <Setter Property="SnapsToDevicePixels" Value="True" />
    <Setter Property="HorizontalContentAlignment" Value="Left" />
    <Setter Property="MinWidth" Value="0" />
    <Setter Property="Height" Value="22" />
    <Setter Property="Cursor" Value="Hand" />
</Style>

1 个答案:

答案 0 :(得分:0)

我建议使用像Snoop这样的工具在运行时检查XAML-Tree。在我看来,在树中的某处有一个额外的项目,其中应用了默认模板。由于您似乎没有覆盖树中的所有默认模板,我猜您会以这种方式找到正确的元素(只需要查找背景或边框为黑色的项目)。

您可以在此处找到该工具:http://snoopwpf.codeplex.com/