摘要: 可以这么写,这个网页缩放了 同时滚动条也被绽放了,明显结果不正确webBrowser1.Document.Body.Style = "zoom:200%";正解http://stackoverflow.com/questions/738232/zoom-in-on-a-web-page-using-webbrowser-net-control这么写也可以//Zoom INwebBrowser1.Focus();SendKeys.Send("^{+}");// [CTRL]+[+]//Zoom OUTwebBrowser1.Focus();SendKeys 阅读全文
posted @ 2013-12-08 18:29 XE2011 阅读(2246) 评论(0) 推荐(0)
摘要: 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Windows.Forms; 6 using System.Drawing; 7 using mshtml; 8 9 //参考 10 11 //http://code.google.com/p/msit88-gold-coast/source/browse/sandbox/GoldCoastTestSolution/HtmlEdito... 阅读全文
posted @ 2013-12-08 18:22 XE2011 阅读(302) 评论(0) 推荐(0)