Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a XAML listbox in my windows 8 metro application, this listbox is binded to an observable collection, and can have hundreds of items . it also has one image, i want to load the image only when an item is visible(when user scrolls to that item). how can i do this. ?

share|improve this question

1 Answer

Change the ItemPanelTemplate of your ListBox to put a VirtualizedStackPanel: the control will be virtualized and only the items displayed on screen will be loaded in memory.

share|improve this answer
thanks alot, it worked .. – Ishti Jun 10 '12 at 17:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.