本文介绍了虚拟化Uniformgrid的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人知道在某个地方可以使用WPF的虚拟化统一网格实现吗?

Does anyone know if there exists a virtualizing uniformgrid implementation somewhere for WPF that one can use?

我已经尝试过一个stackoverflow和Google,但到目前为止什么都没找到.

I've tried one stackoverflow and Google and found nothing so far.

到目前为止,我一直在使用的是一个具有UniformGrid作为其ItemsPanel的ListBox.但这并不能虚拟化.

What I have been using so far is a ListBox with a UniformGrid as its ItemsPanel. But that doesn't virtualize.

推荐答案

我昨天得到的最近的东西是由Dan Creviers工作启发而来的VirtualizingTilePanel .可悲的是,它作为统一网格的替代品而投入使用,而不仅仅是开箱即用.

The closest I got yesterday was this VirtualizingTilePanel inspired by Dan Creviers work. Sadly it dropping it in as a repacement for uniformgrid didn't just work out of the box.

这篇关于虚拟化Uniformgrid的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 14:41