WPF - 如何将 DataGrid 中的某些行设置为不同的颜色?
我有一个数据网格。将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 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 aColor
.