CefSharp For WPF响应页面点击事件

Posted Lulus

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CefSharp For WPF响应页面点击事件相关的知识,希望对你有一定的参考价值。

初始化

<!--浏览器-->
<cefSharpWPF:ChromiumWebBrowser Name="webBrowser" 
                                Grid.Row="0" >
</cefSharpWPF:ChromiumWebBrowser>
public MainWindow()
{
    InitializeComponent();

    //在js里面注册对象bound,然后用该对象调用C#方法
    webBrowser.RegisterAsyncJsObject("bound", new BoundObject(this), BindingOptions.DefaultBinder); //Use the default binder to serialize values into complex objects
}

BoundObject.cs

public class BoundObject
{
    private Window mainWindow { get; set; }
    public BoundObject(Window _mainWindow)
    {
        mainWindow = _mainWindow;
    }

    /// <summary>
    /// 打开exe文件
    /// </summary>
    public void OpenFile()
    {
        try
        {
            //MessageBox.Show("(\"This is an MyMethod coming from C#\")", "haha");
            string path ="你要打开的文件目录";
            System.Diagnostics.Process.Start(path);
        }
        catch(Exception ex)
        {
            MessageBox.Show("请输入正确的文件路径!", "提示");
        }
    }
}

js调用

bound.openFile();

bound在C#中定义,这样就会调用BoundObject类的OpenFile方法

以上是关于CefSharp For WPF响应页面点击事件的主要内容,如果未能解决你的问题,请参考以下文章

CefSharp如何进行页面的缩放(即Ctrl+滚轮)

CefSharp For WPF基本使用

CefSharp.wpf Web 浏览器导航事件 (C# .Net)

cefsharp wpf wpf加载svg 在同一个页面中打开链接

使用 CEFSharp Web 浏览器的 WPF 应用程序在 clickonce 版本中崩溃

[转]cefsharp wpf 中文输入问题解决方法