Winform中開啟網頁頁面的方法

來源:互聯網
上載者:User

標籤: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 =@"<script language=‘javascript‘ type=‘text/javascript‘> function openUrl(url){ window.open(url,‘測試視窗‘,‘width=400px,height=400px,directories=true,location=false,menubar=false,resizeable=false,scrollbars=yes,toolbar=false ‘); }</script>"; WebBrowser wb =newWebBrowser(); wb.DocumentText=@"<html> <head>"+ script +"</head><body></body></html>";//定義WebBrowser中的DOM文檔 wb.DocumentCompleted+=delegate { //執行指令碼函數 wb.Document.InvokeScript("openUrl",newobject[]{ url }); };

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.