Call C-Sharp from javaScript using CefSharp in WPF app
Call C-Sharp from javaScript using CefSharp in WPF app
Here’s how you can invoke a C# function from javaScript while using CefSharp in a WPF app.
Step 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); } }
Step 2: Register…
View On WordPress










