码迷,mamicode.com
首页 > Windows程序 > 详细

WPF和js交互 调用窗体中的方法

时间:2014-08-29 22:35:38      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   art   div   html   log   

public partial class WebTest: Window
{
   private void Window_ContentRendered(object sender, EventArgs e)
   {
     this.wbrExam.ObjectForScripting = new OprateBasic(this);
     this.wbrExam.Source = new Uri(Environment.CurrentDirectory + @"\res\template.html");
   }
   
   public void Wtest(string str)
   {
        MessageBox.Show(str);
   }
}

[System.Runtime.InteropServices.ComVisible(true)]
public class OprateBasic
{
    private WebTest instance;
    public OprateBasic(WebTest instance)
    {
       this.instance = instance;
    }
    
    public void HandleTest(string p)
    {
        instance.Wtest(p);
    }
}

js->cs:window.external.HandleTest(“测试”);

cs->js:this.wbrExam.InvokeScript("js方面名", new object[] { "hello" });

 

WPF和js交互 调用窗体中的方法

标签:style   blog   color   ar   for   art   div   html   log   

原文地址:http://www.cnblogs.com/yuejin/p/3945783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!