在应用程序级别设置 WPF 数据网格选定的行颜色

发布于 2024-10-21 02:08:22 字数 157 浏览 1 评论 0原文

我的数据网格行选择颜色默认为深蓝色,当我将 Windows 7 主题更改为 Windows 经典主题时,它看起来太暗和丑陋。

我想将 wpf 应用程序中所有数据网格的行选择颜色设置为在 Windows 7 和 classic 上看起来更好的其他颜色。 (如果你知道两者都适合什么颜色)

My datagrid row selection color by default is dark blue, when I change my windows 7 theme to windows classic theme it looks too dark and ugly.

I want to set the row selection color of all the datagrids in my wpf application to something else which looks better on both windows 7 and classic. (also if you know what color is good on both)

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

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

发布评论

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

评论(1

攒一口袋星星 2024-10-28 02:08:22

要在应用程序级别设置所选 DataGridRow/DataGridCell 的背景,您可以将以下样式添加到 App.xaml

<Application ...>
    <Application.Resources>
        <Style TargetType="DataGridCell">
            <Style.Triggers>
                <Trigger Property="IsSelected" Value="True">
                    <Setter Property="Background" Value="LightBlue"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </Application.Resources>
</Application>

至于使用哪种颜色,我没有任何除了尝试一些直到找到你喜欢的之外,这确实是很好的建议:)

To set the Background for a selected DataGridRow/DataGridCell at application level you can add the following Style to App.xaml

<Application ...>
    <Application.Resources>
        <Style TargetType="DataGridCell">
            <Style.Triggers>
                <Trigger Property="IsSelected" Value="True">
                    <Setter Property="Background" Value="LightBlue"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </Application.Resources>
</Application>

As for which color to use, I don't have any really good tips besides trying a few until you find one that you like :)

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