如何找出当前屏幕上有哪些 DataGridView 行?
在我的 C# (2010) 应用程序中,我有一个处于虚拟模式的 DataGridView,其中包含数千行。是否可以找出当前屏幕上有哪些单元格?
In my C# (2010) application I have a DataGridView in Virtual Mode which holds several thousand rows. Is it possible to find out which cells are onscreen at the moment?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更新:它现在可以找到可见的单元格。
Updated: It now finds visible cells.
我自己没有尝试过,但在我看来,使用 DataGridView.GetRowDisplayRectangle 并检查它是否与当前 DataGridView.DisplayRectangle 将是正确的选择。 Rectangle.IntersectsWith 对此很有用。
作为优化,我将使用 DataGridView .DisplayedRowCount 找到第一个可见行后确定哪些行是可见的。
I haven't tried this myself, but it seems to me that determining the rectangle of a row using DataGridView.GetRowDisplayRectangle and checking if it overlaps the current DataGridView.DisplayRectangle would be the way to go. Rectangle.IntersectsWith is useful in to do this.
As an optimization I would use DataGridView .DisplayedRowCount after finding the first visible row to determine what rows are visible.
恕我直言
问候
IMHO
Regards