Winform中打开网页页面的方法

2020-12-07 01:34

阅读:667

YPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">

标签:winform   class   java   tar   ext   width   

1、首先比较简单的我们知道有类似的方法如下   

System.Diagnostics.Process.Start("http://www.baidu.com");

2、比较灵活一点,可以定义窗口大小,我们要实现网页中脚本打开页面的方法,即window.open

      那么,我们必然会想,如何调用页面的脚本呢?其实可以利用WebBrowser来实现

//连接 string url ="http://www.baidu.com"; //定义脚本 string script =@" function openUrl(url){ window.open(url,‘测试窗口‘,‘width=400px,height=400px,directories=true,location=false,menubar=false,resizeable=false,scrollbars=yes,toolbar=false ‘); }"; WebBrowser wb =newWebBrowser(); wb.DocumentText=@""+ script +"";//定义WebBrowser中的DOM文档 wb.DocumentCompleted+=delegate { //执行脚本函数 wb.Document.InvokeScript("openUrl",newobject[]{ url }); };

Winform中打开网页页面的方法,搜素材,soscw.com

Winform中打开网页页面的方法

标签:winform   class   java   tar   ext   width   

原文地址:http://www.cnblogs.com/xjwxjk/p/3716778.html


评论


亲,登录后才可以留言!