Silverlight 数据网格加载所有行

发布于 2024-11-16 20:34:59 字数 139 浏览 1 评论 0原文

当我上下滚动时,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 技术交流群。

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

发布评论

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

评论(2

菩提树下叶撕阳。 2024-11-23 20:34:59

最有可能发生的原因是 SL datagrid 使用虚拟化来优化性能。您可以在此处阅读更多信息,但解决方案似乎是将其添加到您的 DG 声明中:

VirtualizingStackPanel.VirtualizationMode="Standard"  

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:

VirtualizingStackPanel.VirtualizationMode="Standard"  
水中月 2024-11-23 20:34:59

它这样做是有充分理由的。 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.

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