如何计算 devexpress xtragrid 的行数
我正在使用 Devexpress XtraGrid 控件,在这里我可以计算网格页脚中的行数。但为此我需要在网格中设置至少一列的 SummeryItem 的 count 属性。我不想这样做。
我想要计算 xtraGrid 中的行数,而不引用网格中的任何一列。我只想显示行数。当用户过滤该行时,此时计数也需要更改。
是否有任何选项可以在组标题面板中显示此号码?
I am using Devexpress XtraGrid Control, Here I can count the number of rows in footer of grid. but for this I need to set count property of SummeryItem in grid for at least one column. I dont want to do like this.
I want count number of rows in xtraGrid without referring any one column in grid. I just want to show number of rows count. when user will filter that rows, at that time count also need to be changed.
Is there any option to show this number in Group header panel?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我将使用
BaseView.RowCount
获取行数并在CustomDrawGroupPanel
事件中绘制它。I'd use
BaseView.RowCount
to get the row count and draw it withinCustomDrawGroupPanel
event.您可以使用 customsummarycalculate 事件来统计当前在已过滤集合中显示的行数,并将其显示在摘要区域中(通常,我将该文本放在我正在使用的集合的 ID 字段的摘要区域中 - 因为我不需要在那里放置任何其他内容)。
You can use the customsummarycalculate event to count the number of rows currently shown in the filtered collection and display it in the summary area (generally, I put that text in the summary area of the ID field for the collection I'm using - as I never have a need to put anything else there).
我不知道这是否是更新,但是:
I don't know if this is an update but: