以编程方式编辑 wpf 中的数据网格单元格
我想编辑单元格不是它的值而是它的背景颜色。我知道 rowIndex 和 columnIndex。但穿越网格是一个困难的部分。我只想要
DataGrid.Rows[0][3].BackgroundColor=WhateverIWant
之类的东西,即使在 VisualTreeHelper 的帮助下循环也可以,但请指导我完成它。
谢谢
I want to edit the cell not its value but its background color. I know the rowIndex and the columnIndex. But to travese through the grid is a hard part. I just want something like
DataGrid.Rows[0][3].BackgroundColor=WhateverIWant
Even looping with the help of VisualTreeHelper will work, but kindly guide me through it.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用以下方法:
您也可以将其作为 DataGrid 上的扩展方法
Use following method:
You can also make it as extension method on DataGrid