如何在Windows Phone 8中将缩放级别设置为浏览器

时间:2013-09-19 07:31:36

标签: windows-phone-8 browser zoom

在我的Windows Phone 8应用程序中,我想在网络浏览器中打开一个页面。 为此,我采用了WebBrowser。

<Grid x:Name="ContentPanel" Grid.Row="1" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="0,0,0,0">
        <phone:WebBrowser x:Name="addComBrowser" HorizontalAlignment="Center"  VerticalAlignment="Center" Margin="0,0,0,0" MinWidth="480" MinHeight="796" />
    </Grid>

现在在代码隐藏文件中我已经设置了网址。

Uri uri = new Uri("http://blablabla.....");
        addComBrowser.Source = uri;

现在,当我运行应用程序时,浏览器中的内容显示的尺寸非常小。 以下是输出。

enter image description here

如何增加缩放级别的字体大小。

感谢。

1 个答案:

答案 0 :(得分:2)

如果您可以更改HTML,则可以添加视口元数据: https://developer.mozilla.org/en/Mobile/Viewport_meta_tag

<head>

中的</head>html之间插入此内容
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />