Silverlight 数据网格加载所有行
当我上下滚动时,Silverlight 数据网格似乎会加载行(触发 LoadingRow 事件)。
有没有办法阻止这种行为?我想在设置数据网格的 ItemSource 时立即加载所有行。
这可能吗?
The Silverlight datagrid seems to load rows (firing off the LoadingRow event) while I scroll up and down.
Is there a way to prevent this behavior? I would like to load all rows at once when I set the datagrid's ItemSource.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最有可能发生的原因是 SL datagrid 使用虚拟化来优化性能。您可以在此处阅读更多信息,但解决方案似乎是将其添加到您的 DG 声明中:
Most likely happening because SL datagrid uses virtualization for performance optimization. You can read more here, but it appears the solution is to add this to your DG declaration:
它这样做是有充分理由的。 Silverlight 中的数据网格会自动调整自身大小。仅加载部分数据源确实可以提高性能。如果你有很多行,这对你的 GPU 来说是一个很大的问题。
There is a good reason it does this. A datagrid in Silverlight automatically resizes itself. Only loading part of the data source does increase performance. Is is rather big deal if you have a lot of row, that is a lot of work for your GPU.