I'm looking for a way to reliably scroll a tall HTML page in a Windows 8 app. The app I'm making gets some HTML formatted text from an XML file in the package, and currently displays it in a WebView on one side of a SplitPage.
This is all working fine, but because of the way WebView works, I'm having problems with focus for scrolling. When the SplitPage containing the WebView is first loaded the WebView has focus for scrolling (with the scroll wheel) and works as expected, but the ListView containing the other items does not scroll with the scroll wheel, even when clicking in it. When the user goes back to the home screen, then back into the same SplitPage the WebView can not be scrolled with the scroll wheel.
I've looked at using a WebViewBrush, but from what I've tried I don't think it's going to work for me. There doesn't seem to be any way to render a WebView off-screen or collapsed and then paint a WebViewBrush of that on a Rectangle on screen.
Any ideas for either another way to display the data, or to get WebView or WebViewBrush to play nice?