本文介绍了如何为数据网格中的每个列实现计数记录功能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个wpf数据网格。我有10列。我需要在数据网格的末尾显示一个摘要行。
它应该显示数据网格中每列末尾每列的记录数。我需要下面的内容。
Column1 Column2 Column3
test 1 NULL
test1 2 6
test2 4 0
总计3 3 2
我尝试过:
I have a wpf datagrid. I have 10 columns in that. I need to show a summary row at the end of the data grid.
It should show record count of each column at the end of each column in the data grid. I need something like below.
Column1Column2Column3
test 1 NULL
test1 2 6
test2 4 0
Total 3 3 2
What I have tried:
推荐答案
这篇关于如何为数据网格中的每个列实现计数记录功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!