Virtualization Winrt GridView

I had several problems trying to show GridViewItemsin GridViewin different layouts. Basically EVERYTHING kills virtualization. If we use VariableSizedWrapGrid, virutalizaiton is gone, if we use the built-in grouping functionality, virtualizaiton also disappeared. So far the only solution:

Only solution

But it really doesn’t cut, because it changes the design so much. As I said, the main problem is that almost any small layout change that you make on GridViewdeploy virtualization. Has anyone found a good way to avoid this problem when changing, GridViewor did everyone just have to stick to what the GridViewdefault looks like ?

Oh, one more thing. Unfortunately, WinRT does not allow us to create our custom virtual panel, because the constructor VirtualizingStackPanel protected(or private, cannot remember correctly). If you can give some information about this, that would be great too =).

Thank!

+5
source share
1 answer

anytime when you change the panel to VariableSizedWrapGrid, or you use Grouping in your gridview, virutalization is gone. I posted in Uservoice that to support virtualization using VariableSizedWrapGrid

http://visualstudio.uservoice.com/forums/121579-visual-studio/suggestions/4333881-make-variablesizedwrapgrid-virtualizing-

+1
source

All Articles