1

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.

kadben
  • 185
  • 2
  • 14
  • 1
    You may want to check my answer in this question: http://stackoverflow.com/questions/30705584/windows-phone-8-1-handle-webview-vertical-scroll-by-outer-scrollviewer-element/ – tdmanutd Jun 19 '15 at 14:12

1 Answers1

0

Try this:

<WebView Source="http://www.example.com/"
         ScrollViewer.VerticalScrollBarVisibility="Visible"
         ScrollViewer.VerticalScrollMode="Enabled" />
Owen James
  • 628
  • 7
  • 16
MrEko
  • 89
  • 1
  • 9