我如何知道 WPF DataGridView 中哪些行可见?
有没有一种方法可以确定在滚动查看器的边界内的 WPF DataGrid 中随时显示哪些数据网格行/单元格?
Is there a way to determine what data grid rows/cells are being show in the WPF DataGrid within the scrollviewer's bounds at any one time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 LoadingRow 事件,但如果不起作用,您可能必须创建更复杂的东西。例如,您可能必须迭代每个 DataGridRow 并检查其 Visibility/IsVisible 或 DataContext。
;)
You could look into the LoadingRow event, but you may have to create something more complex if that doesn't work. For instance, you may have to iterate each DataGridRow and check its Visibility/IsVisible or DataContext.
;)