显式 DataGrid CellStyle Setter 被同一上下文中的隐式单元格样式覆盖?

发布于 2024-09-25 12:13:33 字数 1255 浏览 3 评论 0原文

我对 WPFToolkit (.NET 3.5) 中的 DataGrid 和 .NET 4.0 中的内置版本有一个奇怪的问题:

使用显式设置器创建键控 DataGrid 样式时对于 CellStyle 到另一个键控样式,它的工作原理与怀疑的一样。但是,当还为 DataGridCell 创建无键样式时,它将覆盖 DataGrid 样式中的显式 CellStyle-setter。这似乎是错误的。这是设计使然还是错误?

<Window.Resources>
    <Style TargetType="DataGridCell">
        <Setter Property="Background" Value="Blue" />
    </Style>
    <Style x:Key="CellStyle1" TargetType="DataGridCell">
        <Setter Property="Background" Value="Green" />
    </Style>
    <Style TargetType="DataGrid">
        <Setter Property="Background" Value="Yellow" />
        <Setter Property="CellStyle" Value="{StaticResource CellStyle1}" />
    </Style>
    <XmlDataProvider x:Key="xmldata" XPath="data/*">
        <x:XData>
            <data xmlns="">
                <item1 />
                <item2 />
                <item3 />
            </data>
        </x:XData>
    </XmlDataProvider>
</Window.Resources>
<Grid>
    <DataGrid ItemsSource="{Binding Source={StaticResource xmldata}}" />
</Grid>

I have a weird issue with the DataGrid in WPFToolkit (.NET 3.5) and the built in version in .NET 4.0:

When creating a keyed DataGrid-style with an explicit setter for CellStyle to another keyed style it works as suspected. But when also creating an keyless style for DataGridCell it will override the explicit CellStyle-setter in the DataGrid-style. This seems wrong. Is this by design or is it a bug?

<Window.Resources>
    <Style TargetType="DataGridCell">
        <Setter Property="Background" Value="Blue" />
    </Style>
    <Style x:Key="CellStyle1" TargetType="DataGridCell">
        <Setter Property="Background" Value="Green" />
    </Style>
    <Style TargetType="DataGrid">
        <Setter Property="Background" Value="Yellow" />
        <Setter Property="CellStyle" Value="{StaticResource CellStyle1}" />
    </Style>
    <XmlDataProvider x:Key="xmldata" XPath="data/*">
        <x:XData>
            <data xmlns="">
                <item1 />
                <item2 />
                <item3 />
            </data>
        </x:XData>
    </XmlDataProvider>
</Window.Resources>
<Grid>
    <DataGrid ItemsSource="{Binding Source={StaticResource xmldata}}" />
</Grid>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

思念绕指尖 2024-10-02 12:13:33

这是有效的:

<DataGrid ItemsSource="{Binding Source={StaticResource xmldata}}" 
          CellStyle="{StaticResource CellStyle1}" />

似乎 Datagrid 的无键样式比 DataGridCell 的无键样式弱。这很奇怪,但这是一个有点复杂的问题:未加钥匙的母亲与未加钥匙的孩子,谁应该获胜?

This works :

<DataGrid ItemsSource="{Binding Source={StaticResource xmldata}}" 
          CellStyle="{StaticResource CellStyle1}" />

It seems that the un-keyed style of the Datagrid is weaker than the un-keyed style of the DataGridCell. It's quite strange, but this is a bit complex question : Unkeyed mother vs Unkeyed child, who should wins ?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文