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

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交互 调用窗体中的方法

上一篇:Kinect for Windows SDK v2.0 开发笔记 (十一) 高清面部帧(2) 面部特征对齐


下一篇:网站性能优化之应用程序缓存-初篇