Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WP7 Virtualizing WrapPanel

I want to use a WrapPanel in my WP7 app, so I used the wrappanel contained in Silverlight for Windows Phone Toolkit. The problem with this wrappanel is that it doesnt support UI virtualization.

Can you give some directions on how to implement UI virtualization for a WrapPanel?

like image 267
johnX99 Avatar asked Feb 18 '11 21:02

johnX99


1 Answers

Do you mind explaining your requirement around wrap panel. Because for most of the situations you might be able to make with a combination of VirtualizedStackPanel vertically and fixed items inside each row. I have done this way in many apps, because making a wrap panel virtualizing is hard compared to what easy performance and flexibility I can get from this small work around. Yes orientation can easily trigger for 'number of items per row' change to compensate the width changes.

like image 118
Jobi Joy Avatar answered Sep 22 '22 19:09

Jobi Joy