Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upAccess BrowserView DOM objects in Electron.NET #476
Labels
Comments
|
If you take a look at the IPC view and controller in the ElectronNET.WebApp example project, you'll see how it's done.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi guys,
I have an Electron App with a BrowserView in the main BrowserWindow. In the BrowserView, I load an external URL:
To access the BrowserView's content, I send it to the renderer.js:
In renderer.js, I can access the BrowserView's content:
I want to do the same within an Electron.NET application but there doesn't seem to be the following function:
view.webContents.send("channel");Will this functionality or an equivalent be available in Electron.NET anytime soon?