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. ?
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.
|
|
|
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. |
|||
|
|