C#WebBroswer控制項的使用

來源:互聯網
上載者:User

標籤:lda   oid   需要   超連結   c#   logs   處理   執行   屬性   

在WebBroswer中可以嵌入一個網頁檔案,通過Url屬性綁定。

URI,統一資源識別項,用來唯一的標識一個資源。

URL,統一資源定位器,它是一種具體的URI,即URL可以用來標識一個資源。

它包含的資訊指出檔案的位置以及該怎麼處理它。

可以處理的協議包括:http,https,ftp,mailto,ldap,file,news,gopher,telnet。

 

在WebBroswer中只試過http和file,https是http的加密形式應該也是可行的。

http是一個超連結的形式,就是網上的一個連結。

file是本地檔案的形式,就是可以把本地的一個html檔案顯示在WebBroswer中。

 

1.WebBroswer可以監控網頁載入完成個事件,DocumentCompleted事件。

2.監控網頁上的元素Document.GetElementById("id");

3.監控元素的相關事件,例如監控點擊事件。htmlElement.Click+=htmlElement_Click;註冊點擊事件

4.執行javascript代碼,string msg=Document.InvokeScript("demoFuc",new string[]{"demo"}) as string;

//其中msg為js代碼返回的資料,這裡取得的是string型的資料,如果js返回的是對象時,前台後接收到COM類型對象,目前不會處理

//demoFunc為js定義好的方法名

//如果有參數則需要以object[]的方式傳輸,到實際拿到的只是第一個元素的值

5.觸發事件時可以拿到觸發對象的相關資訊

private void Btn_Click(object sender, HtmlElementEventArgs e)
{
HtmlElement MsgBtn = sender as HtmlElement;//把sender轉為HtmlElement類型
if (GoHomeMsgBtn.Id == "。。。“)//取得元素的ID
{


}

 

}

 

 string path = AppDomain.CurrentDomain.SetupInformation.ApplicationBase;//程式的Debug目錄 string uri = "../../demo.html"; webBrowser.Url = new Uri(new Uri(path), uri);//拼接uri,並賦值給WebBroswer

 

C#WebBroswer控制項的使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.