1
votes

I have a webview in a scrollview in a Windows phone 8.1 application, I set the height of the webview to fit its content and disabled the scrollview in the webview, but when I scroll the webview the scrollview is not scrolling.

the same code work for Windows store 8.1.

1
You may want to check my answer in this question: stackoverflow.com/questions/30705584/… - tdmanutd

1 Answers

0
votes

Try this:

<WebView Source="http://www.example.com/"
         ScrollViewer.VerticalScrollBarVisibility="Visible"
         ScrollViewer.VerticalScrollMode="Enabled" />