views:

84

answers:

2

I'm in a situation where I'm using an ItemsControl with a SurfaceScrollViewer bound to an AsyncVirtualizingCollection and all of the data is being requested. I'm aware that it's due to the ItemsControl request all of the data but I'm not sure how to get around this.

I've tried the AsyncVirtualizingCollection bound to a ListBox and it works fine and I'm now attempting to having it bound to a SurfaceListBox but the problem persists.

Any ideas of how to overcome this?

Thanks & Regards Tony

A: 

Hi TOny,

I have the exactly same probleme.

Did you find a solution ?

Many thanks

Max @ GoTactile

GoTactile
Never did get round this problem, instead I detected when the listbox is at the bottom of the list and fire a a function to get more data.
TWith2Sugars
A: 

I have found a pretty nice solution with this great article : http://www.devzest.com/blog/post/WPF-Data-Virtualization.aspx

GoTactile