The other day I was working on a Windows Phone app. I wanted to add a “pull down to refresh” panel to a large list of images. Just like the Facebook and Twitter apps have.
As Microsoft does not provide this functionality in their default controls, I started searching the web if somebody else has built something like this already.
I found a blog post by Jason Ginchereau where he provided this functionality for Windows Phone 7.
In my app I use an ItemsControl
control with a VirtualizingStackPanel
control to prevent memory issues.
After I added the PullDownToRefreshPanel control to my list and started testing it on my phone,
I ran into some issues.