這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)openwebkitsharp出現(xiàn)COM對象與其基礎(chǔ)RCW分開后就不能再使用的示例分析,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務(wù)項(xiàng)目有:域名與空間、雅安服務(wù)器托管、營銷軟件、網(wǎng)站建設(shè)、易縣網(wǎng)站維護(hù)、網(wǎng)站推廣。
private void button1_Click(object sender, EventArgs e) { webKitBrowser.UseJavaScript = true; webKitBrowser.Navigate("http://localhost/index.html"); webKitBrowser.ShowJavaScriptAlertPanel += webKitBrowser_ShowJavaScriptAlertPanel; webKitBrowser.DocumentCompleted += webKitBrowser_DocumentCompleted; } void webKitBrowser_ShowJavaScriptAlertPanel(object sender, WebKit.ShowJavaScriptAlertPanelEventArgs e) { //MessageBox.Show("msg:" + e.Message);//最好不要在這個事件中show,否則容易混亂出錯 MessageBox.Show(e.Message); Console.WriteLine(sender.ToString() + ":"+e.Message); } private void webKitBrowser_Load(object sender, EventArgs e) { webKitBrowser.GetScriptManager.ScriptObject = this; } private void button2_Click(object sender, EventArgs e) { //string strScript = "messageBox(document.getElementById(\"testelement\").innerText = \"123456\")"; //webKitBrowser.StringByEvaluatingJavaScriptFromString(strScript); WebKit.JSCore.JSValue V = webKitBrowser.GetScriptManager.CallFunction("test", new object[] { "zs", "addrr" }); //Console.WriteLine("jsvalue=" + V.ToString()); this.Text = webKitBrowser.DocumentTitle; } private void button3_Click(object sender, EventArgs e) { webKitBrowser.Navigate("http://www.taobao.com");//("http://www.pudn.com/Download/item/id/4061758.html"); //("https://www.baidu.com"); }
先點(diǎn)button1(以便啟用script),再點(diǎn)button3,然后關(guān)閉程序主窗體,就出現(xiàn):COM 對象與其基礎(chǔ) RCW 分開后就不能再使用
網(wǎng)上有相應(yīng)分析,其實(shí)說白了,就是C#中沒有相應(yīng)處理COM中相關(guān)資源,想來想去,我添加將事件去掉代碼:
private void Form1_FormClosed(object sender, FormClosedEventArgs e)
{
webKitBrowser.ShowJavaScriptAlertPanel -= webKitBrowser_ShowJavaScriptAlertPanel;
webKitBrowser.DocumentCompleted -= webKitBrowser_DocumentCompleted;
}
然后一切都OK了。
上述就是小編為大家分享的openwebkitsharp出現(xiàn)COM對象與其基礎(chǔ)RCW分開后就不能再使用的示例分析了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。