如何在DataGrid中设置行标题列的样式

时间:2012-01-04 16:17:14

标签: xaml datagrid styling rowdetails

我正在使用ComponentOne C1DataGrid。除了行标题列之外,我已经能够将其设置为完整范围。

如何在XAML中设置样式?

你可以看到图片: here 谢谢, 海军报

1 个答案:

答案 0 :(得分:1)

在其他人感兴趣的情况下回答我自己的问题:

有一个特殊的演示者,DataGridRowHeaderPresenter,可以设置样式。 我想用树状的“+”和“ - ”符号替换标准行细节切换,我按如下方式进行:

    <Style x:Key="DataGridRowHeaderStyle2" TargetType="{x:Type c1:DataGridRowHeaderPresenter}">
    <Setter Property="FontWeight" Value="Bold" />
    <Setter Property="FontSize" Value="12" />
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type c1:DataGridRowHeaderPresenter}">
                <!-- BulletDecorator is used to provide baseline alignment between the sign and the Content -->
                <BulletDecorator Background="#BFEFF2F5">
                    <BulletDecorator.Bullet>
                        <Grid Width="13" Height="13">
                            <Image Name="sign" Source="/myControls;component/Resources/Images/plus.png" />
                        </Grid>
                    </BulletDecorator.Bullet>
                    <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" RecognizesAccessKey="True"/>
                </BulletDecorator>
                <ControlTemplate.Triggers>
                    <Trigger Property="IsSelected" Value="true">
                        <Setter Property="Source"  Value="/myControls;component/Resources/Images/minus.png"  TargetName="sign"/>
                    </Trigger>
                </ControlTemplate.Triggers>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>