I encountered this very disturbing bug in our Windows 8 Metro Style application.
We have a grid consisting of three rows - A header - A listview (containing blocks that lets the user scroll horisontally) - A footer (containing a WebView that displays an ad).
..............................................................................
Logo
..............................................................................
ListView
Scrolls horisontally ---------------------->
..............................................................................
AD
..............................................................................
The problem is - when I load the content for the ad (using NavigateToString, which loads some javascript that displays an ad), the scrolling in the listview stops working (unless you use the scrollbar). I have isolated the error to this specific method - if I don't call NavigateToString, but still include the WebView - the scrolling works.
I have tried generating the Html as a Task, and calling the method on the dispatcher, without luck.
I have tried strange stuff, like using a DispatchtTimer to delay the loading of the ad. It works.. until the NavigateToString-method is called.
A strange thing - the view contains a bottom-app-bar. If I show/hide this app-bar, the scrolling suddenly works. (Maybe the focus is somehow regained to the ListView when doing this specific action)..
Any suggestions? =)