標籤: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控制項的使用