根据单元格的内容设置 DataGridRow 的背景
有没有一种方法,使用 XAML,根据其中一个单元格的内容动态设置行的背景?
谢谢,
菲尔
Is there a way, using XAML, to dynamically set the background of a row based on the content of one of it's cells?
Thanks,
Phil
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以定义行的样式并使用 DataTrigger 更改颜色。像这样的东西:
这里
BooleanPropertyOnObjectBoundToRow
是单元格绑定到的数据对象上的布尔属性。You can define a style for a row and change the color using DataTrigger. Something like this:
Here
BooleanPropertyOnObjectBoundToRow
is a boolean property on your data object one the cells is bound to.