西西软件园多重安全检测下载网站、值得信赖的软件下载站!
软件
软件
文章
搜索

首页编程开发C#.NET → C#中winform与webbrower控件交互问题

C#中winform与webbrower控件交互问题

相关软件相关文章发表评论 来源:本站整理时间:2010/11/19 16:47:24字体大小:A-A+

作者:佚名点击:293次评论:0次标签: winform webbrower

  • 类型:远程监控大小:4.6M语言:中文 评分:5.7
  • 标签:
立即下载

我想实现 js调用 winform里面的方法,通过webbrower控件和winform进行交互。不知道怎么弄啊。
我在网上找了些资料,说的在js里面写 window.external.方法名();
但是没用啊,js报错。。。

this.webBrowser1.Url = new Uri(GetDefaultUrl());

C# code
using System;
using System.Windows.Forms;
using System.Threading;
using System.Runtime.InteropServices;

namespace WindowsFormsApplication1
{
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
webBrowser1.ObjectForScripting = this;
}

public void Func(string str)
{
MessageBox.Show(str);
}

private void Form1_Load(object sender, EventArgs e)
{
webBrowser1.Navigate("about:blank");

webBrowser1.Document.Write("<script> function ButonClick() { window.external.Func('test');}</script><input type='button' onclick='ButonClick();'>test");
}
}
}

设置下面两个地方
C# code
[System.Runtime.InteropServices.ComVisibleAttribute(true)]
public partial class Form1 : Form

webBrowser1.ObjectForScripting = this;

    相关评论

    阅读本文后您有什么感想? 已有人给出评价!

    • 8 喜欢喜欢
    • 3 顶
    • 1 难过难过
    • 5 囧
    • 3 围观围观
    • 2 无聊无聊

    热门评论

    最新评论

    发表评论 查看所有评论(0)

    昵称:
    表情: 高兴 可 汗 我不要 害羞 好 下下下 送花 屎 亲亲
    字数: 0/500 (您的评论需要经过审核才能显示)