最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Call C# function from javaScript using CefSharp in Windows Form App - Stack Overflow

programmeradmin0浏览0评论

How to call a C# function from JAVASCRIPT ( which is in HTML code, I am calling through CefSharp ) in Windows Form App

CefSharp Components

public partial class Form1 : Form
{
    public ChromiumWebBrowser chromeBrowser;

    public Form1()
    {
        InitializeComponent();

        // Start the browser after initialize global ponent
        InitializeChromium();
    }

    public void InitializeChromium()
    {

        CefSettings settings = new CefSettings();

        settings.CefCommandLineArgs.Add("enable-media-stream", "1");

        Cef.Initialize(settings);

        chromeBrowser = new ChromiumWebBrowser("localhost/myproject/index.html");

        this.Controls.Add(chromeBrowser);

        chromeBrowser.Dock = DockStyle.Fill;
    }
}

Function To Be called By JS

public void Test(String message)
{
    MessageBox.Show(message, "Test");
}

HTML Code Where I need to call Test() at onclick event

<span class="mySpan" onclick="<Some>.Test('It is working');"></span>

Code I Tried,

Inside InitializeChromium Function

CefSharpSettings.LegacyJavascriptBindingEnabled = true;

chromeBrowser.RegisterAsyncJsObject("boundAsync", new BoundObject());

BoundObject.cs

public class BoundObject
{
    public void Test(String message)
    {
        MessageBox.Show(message, "Test");
    }
}

HTML CODE

<span class="mySpan" onclick="boundAsync.Test('It is working');"></span>

But It doesn't work for me. Please let me know where am I wrong?

Thanks in advance!

How to call a C# function from JAVASCRIPT ( which is in HTML code, I am calling through CefSharp ) in Windows Form App

CefSharp Components

public partial class Form1 : Form
{
    public ChromiumWebBrowser chromeBrowser;

    public Form1()
    {
        InitializeComponent();

        // Start the browser after initialize global ponent
        InitializeChromium();
    }

    public void InitializeChromium()
    {

        CefSettings settings = new CefSettings();

        settings.CefCommandLineArgs.Add("enable-media-stream", "1");

        Cef.Initialize(settings);

        chromeBrowser = new ChromiumWebBrowser("localhost/myproject/index.html");

        this.Controls.Add(chromeBrowser);

        chromeBrowser.Dock = DockStyle.Fill;
    }
}

Function To Be called By JS

public void Test(String message)
{
    MessageBox.Show(message, "Test");
}

HTML Code Where I need to call Test() at onclick event

<span class="mySpan" onclick="<Some>.Test('It is working');"></span>

Code I Tried,

Inside InitializeChromium Function

CefSharpSettings.LegacyJavascriptBindingEnabled = true;

chromeBrowser.RegisterAsyncJsObject("boundAsync", new BoundObject());

BoundObject.cs

public class BoundObject
{
    public void Test(String message)
    {
        MessageBox.Show(message, "Test");
    }
}

HTML CODE

<span class="mySpan" onclick="boundAsync.Test('It is working');"></span>

But It doesn't work for me. Please let me know where am I wrong?

Thanks in advance!

Share Improve this question edited Jul 10, 2018 at 9:55 Divya Arya asked Jul 10, 2018 at 7:49 Divya AryaDivya Arya 4491 gold badge5 silver badges23 bronze badges 4
  • Have you read the documentation? github./cefsharp/CefSharp/wiki/… – amaitland Commented Jul 10, 2018 at 9:01
  • I did and using "RegisterAsyncJsObject" for this purpose. But, that doesn't seem to work for me. – Divya Arya Commented Jul 10, 2018 at 9:48
  • Updated my question with the code, I am trying. Please check @amaitland – Divya Arya Commented Jul 10, 2018 at 9:56
  • 3 boundAsync.Test will be translated to boundAsync.test (You can control if names are camel cased when you register your object). – amaitland Commented Jul 10, 2018 at 10:01
Add a ment  | 

2 Answers 2

Reset to default 8

Here is a tutorial http://windowsapptutorials./wpf/call-c-sharp-javascript-using-cefsharp-wpf-app/

1. Create a Class with the Method to be Invoked

Create a CallbackObjectForJs class that contains a showMessage function which would be invoked from javascript.

public class CallbackObjectForJs{
    public void showMessage(string msg){//Read Note
        MessageBox.Show(msg);
    }
}

2. Register the JS object

The next step is to register the JS object. This can be done by adding the following code in the MainPage.xaml.cs file.

private CallbackObjectForJs _callBackObjectForJs;
public MainWindow()
{
    InitializeComponent();
    _callBackObjectForJs= new CallbackObjectForJs();
    ChromiumWebBrowser.RegisterAsyncJsObject("callbackObj", _callBackObjectForJs);
}

3. Invoke the C# function from JavaScript

Next, simply invoke the C# function from your javascript code.

<script>
    callbackObj.showMessage("Hello World!");
</script>

Note: The name of the C# function should start with a small letter.


Alternative Solution like suggested by @amaitland

Add an event listener to the browser instance:

public MainWindow()
{
    InitializeComponent();
    
    //Initialize ChromiumWebBrowser
    
    //Hook up event
    browser.JavascriptMessageReceived += OnBrowserJavascriptMessageReceived;
}

private void OnBrowserJavascriptMessageReceived(object sender, JavascriptMessageReceivedEventArgs e)
{
    var windowSelection = (string)e.Message;
    //DO SOMETHING WITH THIS MESSAGE
    //This event is called on a CEF Thread, to access your UI thread
    //You can cast sender to ChromiumWebBrowser
    //use Control.BeginInvoke/Dispatcher.BeginInvoke
}

From javascript, invoke the CefSharp.PostMessage method (Which is automatically available within the ChromiumWebBrowser context:

//CefSharp.PostMessage can be used to municate between the browser
//and .Net, in this case we pass a simple string,
//plex objects are supported, passing a reference to Javascript methods
//is also supported.
CefSharp.PostMessage(window.getSelection().toString());

Suggested method above is deprecated

Now it should be:


public MainWindow()
{
    InitializeComponent();
    
    var browser = new ChromiumWebBrowser("...");
    browser.JavascriptObjectRepository.Settings.LegacyBindingEnabled = true;
    browser.JavascriptObjectRepository.Register("callbackObj",
        new CallbackObjectForJs(), options: BindingOptions.DefaultBinder);
}
发布评论

评论列表(0)

  1. 暂无评论