DevExpress WPF Grid - 获取行数

发布于 2024-08-11 21:48:14 字数 36 浏览 2 评论 0原文

有谁知道如何获取 DevExpress WPF 网格行数?

Does anyone knows how to get a DevExpress WPF Grid Rows count?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

厌倦 2024-08-18 21:48:14

当用户更改分组、过滤时,显示的行数可能会发生变化。因此,您应该使用 GridControl.VisibleRowCount 属性而不是数据源行计数。

The number of rows displayed can change as users change the grouping, filterting. Therefore, you should use the GridControl.VisibleRowCount property instead of the data source row count.

故事未完 2024-08-18 21:48:14

我不确定除了实际遍历可视化树(使用 VisualTreeHelper)之外还有其他方法。像 (mygGidControl1.DataSource as ICollection).Count 这样的东西怎么样?

I am not sure there is a way except by actually walking the visual tree (using VisualTreeHelper). How about something like (mygGidControl1.DataSource as ICollection).Count ?

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