如何计算 devexpress xtragrid 的行数

发布于 2024-08-17 12:43:41 字数 201 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

场罚期间 2024-08-24 12:43:41

我将使用 BaseView.RowCount 获取行数并在 CustomDrawGroupPanel 事件中绘制它。

I'd use BaseView.RowCount to get the row count and draw it within CustomDrawGroupPanel event.

别念他 2024-08-24 12:43:41

您可以使用 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).

难如初 2024-08-24 12:43:41

我不知道这是否是更新,但是:

int i = view.SelectedRowsCount;

I don't know if this is an update but:

int i = view.SelectedRowsCount;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文