1

Zooming is turned on by default in a WebView Element in Windows Store 8/8.1 Apps. How can you disable zooming in a WebView? I don't want users on any device (especially touch devices) to zoom in and out of a WebView. I am using c# as the programming language.

Kumar
  • 864
  • 1
  • 22
  • 46
Johann
  • 523
  • 9
  • 22

1 Answers1

-2

You can't disable zoom in webview for windows store apps. AFAIK it is still won't work for windows 8.1

from here. But you can handle(resize the content) zoom of webview if you want. Look at this

Try this Sample

I believe they are using this in IE 10 Link.

Edit :

You can use RichTextBlock to display HTML string.

More info is here & here

Hope this helpful

Community
  • 1
  • 1
Kumar
  • 864
  • 1
  • 22
  • 46