WPF 数据网格中的最后一行绑定到不同的集合
我有一个 ObservableCollection A 绑定到 WPF 中的 DataGrid。用户可以添加、删除和编辑行,这工作正常。
我想在 DataGrid 的末尾添加一个“附加行”,作为给定列的“摘要”。该行将绑定到完全不同的集合 B。 我们可以假设 DataGrid 中的列数等于 B 中的元素数。
它不必是一个控件 - 我想让它看起来像一个。特别是,当用户调整列大小时,“最后一行”的大小也会相应调整。其次,这一行总是在最后。
有什么想法如何实现这样的事情吗? 谢谢!
I have an ObservableCollection A binded to a DataGrid in WPF. The user can add, remove and edit rows and this work fine.
I would like to add an 'additional row' in the end of a DataGrid, serving as a 'summary' for a given column. This row would be binded to a completly other collection B.
We can assume that number of columns in DataGrid is equal to number of elements in B.
It doesn't have to be one control - I would like to make it LOOK LIKE one. Especially, when user resizes columns, the "last row" resizes accordingly. Secondly, this row is always in the very end.
Any ideas how to achieve such a thing?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种解决方案是使用 MultiBinding。
One solution would be to use a MultiBinding.