DevExpress WPF Grid - 获取行数
有谁知道如何获取 DevExpress WPF 网格行数?
Does anyone knows how to get a DevExpress WPF Grid Rows count?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有谁知道如何获取 DevExpress WPF 网格行数?
Does anyone knows how to get a DevExpress WPF Grid Rows count?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
当用户更改分组、过滤时,显示的行数可能会发生变化。因此,您应该使用 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.
我不确定除了实际遍历可视化树(使用 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 ?