通过webbrowser实现js与winform的相互调用
生活随笔
收集整理的這篇文章主要介紹了
通过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)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: (原)用pixi.js 实现 方块阵点击
- 下一篇: 51单片机之音乐代码