WPFdatagrid - 如何在分组时使用(给出)不同的颜色?
我正在使用 Codeplex 的 WPF 数据网格。
我有一个具有分组功能的 wpf 网格。我想要不同颜色的分组区域。 截图如下:
分组时可以指定不同的颜色吗?如果是,我如何在 WPF 数据网格中实现这一点?
I am using WPF datagrid by codeplex.
I have a wpf grid with grouping features. I want the grouped region in different colors.
The screenshot is as follows:
Can different colors be assigned during grouping? If yes how do I achieve this in WPF datagrid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望这会有所帮助...
上面的数据触发器检查我们创建组的值,并相应地分配数据网格行背景颜色。
因此,第一组代表文本“1”(浅绿色)下的所有值,下一组分组在值 2(浅粉色)下。
Hope this helps...
The data triggers above check which value we have created the groups upon and accordingly assigns data grid row background colors.
So first group represents all values under text "1" (LightGreen) and next group is grouped under value 2 (LightPink).