日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

通过webbrowser实现js与winform的相互调用

發(fā)布時間:2023/11/29 编程问答 31 豆豆
生活随笔 收集整理的這篇文章主要介紹了 通过webbrowser实现js与winform的相互调用 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

為什么80%的碼農(nóng)都做不了架構(gòu)師?>>> ??

1客戶端頁面

<!DOCTYPE?html><html?xmlns="http://www.w3.org/1999/xhtml"> <head><meta?charset="utf-8"?/><title></title> </head> <body><script>function?test(message)?{?alert(message);?}</script><!--?調(diào)用C#方法?--><button?onclick="window.external.MyMessageBox('javascript訪問C#代碼')">javascript訪問C#代碼</button></body> </html>

2服務(wù)端代碼

using?System; using?System.Collections.Generic; using?System.ComponentModel; using?System.Data; using?System.Drawing; using?System.Linq; using?System.Security.Permissions; using?System.Text; using?System.Threading.Tasks; using?System.Windows.Forms;namespace?coder128 {[PermissionSet(SecurityAction.Demand,?Name?=?"FullTrust")][System.Runtime.InteropServices.ComVisibleAttribute(true)]//com可訪問性public?partial?class?frm2?:?Form{public?frm2(){InitializeComponent();}private?void?frm2_Load(object?sender,?EventArgs?e){//該對象可由顯示在WebBrowser控件中的網(wǎng)頁所包含的腳本代碼訪問。wb.ObjectForScripting?=?this;//將當(dāng)前類設(shè)置為可以供外界訪問wb.Navigate("C:/Users/nick/Documents/visual?studio?2015/Projects/jizhiclient/coder128/wbtest.html");}private?void?btn_Click(object?sender,?EventArgs?e){wb.Document.InvokeScript("test",?new?String[]?{?"服務(wù)端調(diào)客戶端"?});}public?void?MyMessageBox(String?message){Form1?form=?new?Form1();form.ShowDialog();}} }


轉(zhuǎn)載于:https://my.oschina.net/u/860872/blog/512473

總結(jié)

以上是生活随笔為你收集整理的通过webbrowser实现js与winform的相互调用的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。