WP7 WebBrowser control zoom

后端 未结 4 912
花落未央
花落未央 2020-12-16 02:42

Some pages are too small and hard to read in WebBrowser control, is zooming possible?

4条回答
  •  旧巷少年郎
    2020-12-16 03:15

    I went with the following hack:

    BrowserControl.LoadCompleted += Browser_dohack;
    private void Browser_dohack(object sender, NavigationEventArgs e)
        {
            string html = BrowserControl.SaveToString();
            string hackstring = "";
            html = html.Insert(html.IndexOf("", 0) + 6, hackstring);
            BrowserControl.NavigateToString(html);
            BrowserControl.LoadCompleted -= Browser_dohack;
        }
    

提交回复
热议问题