Windows Phone 8 Web浏览器解析问题

时间:2014-10-10 08:58:50

标签: c# xaml windows-phone-8

当我在c#windows phone 8中使用网络浏览器控件加载外部网站时,内容加载没有问题,但内容太小。用户必须正确缩放视图内容。 这是解决问题吗? 我该如何解决这个问题?

这是我的代码,

WebBrowser myBrowser = new WebBrowser();
Uri targetUrl = new Uri(@"http://.../.../");
myBrowser.IsScriptEnabled = true;
myBrowser.Navigate(targetUrl);
ContentPanel.Children.Add(myBrowser);

谢谢

1 个答案:

答案 0 :(得分:0)

在您的html页面中使用meta

<meta name="viewport" content="width=320" />