WPF - 如何将 DataGrid 中的某些行设置为不同的颜色?

发布于 2024-10-15 22:10:51 字数 86 浏览 2 评论 0原文

我有一个数据网格。将 DataContext 属性设置为数据源后,如果行中的数据满足特定条件,我想以编程方式 (C#) 将某些行的颜色设置为红色。我该怎么做?

I have a DataGrid. After I set the DataContext property to the source of my data, I would like to programatically (C#) set the color of certain rows to say red if data in the row meets a certain condition. How can I do this?

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

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

发布评论

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

评论(1

贪了杯 2024-10-22 22:10:51

如果您使用 MVVM 模式并且有一个代表 DataGrid 中每一行的 ViewModel 对象,那么我将公开 ViewModel 上的 Color 类型的属性,或者与 ValueConverter 结合使用的属性它将属性(无论类型)的值更改为Color

If you're using the MVVM pattern and you have a ViewModel object representing each row in the DataGrid then I'd expose either a property of type Color on the ViewModel, or a property in conjunction with a ValueConverter which changes the value of the property (of whatever type) to a Color.

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