All Questions
Tagged with chromium-embedded .net
49 questions
0
votes
0
answers
26
views
Xilium.CefGlue Handle/Override Ctrl+W keypress in Chromium Embedded Framework cefclient.exe, in C# WPF Application
I am working on C# WPF Application which is using Xilium CefGlue Chromium Embedded Framework.
Overview: Inside the embedded browser when I click on Ctrl+F, it opens a Chromium inbuilt Find dialog.
...
8
votes
1
answer
720
views
How to enable dark mode for CefSharp web browser in .NET?
SCENARIO
I'm very new to CefSharp, in fact, its the first time that I'm using it. And I'm using it under a net core 6.0 winforms application, but this same question and scenario applies under .NET ...
0
votes
0
answers
264
views
.NET: Dependencies of referenced project are not installed in main project
I have the following projects:
VS 2022 Solution explorer view
MyConsoleApplication (.NET 6) has a project reference to MyClassLibrary (.NET Core 3.1).
MyClassLibrary has two package references:
&...
0
votes
0
answers
582
views
Use Cefnet in avalonia
I;m trying to setup Cefnet in my avalonia application. My program.cs looks like this:
internal class Program
{
// Initialization code. Don't use any Avalonia, third-party APIs or any
// ...
0
votes
1
answer
158
views
CefSharp: Set target address for rendering buffer
Due to some limitation, I can't use CefSharp in my main application, instead I start a separate hosting process to do offscreen rendering and use .NET remoting and memory mapped file to copy the ...
-1
votes
1
answer
375
views
What is the most easy way to port my CefSharp based parsers (.net framework 4.7.2) on Linux?
For whole my life I didn't coded even "Hello world!" program for Linux. I have a lot of parsers. They all based on CefSharp. Now I need to port them on Linux. That hurts.
I tried to run them ...
4
votes
1
answer
610
views
Is it possible for a process to load two dll with same name but different versions?
I posted this question two days ago in Microsoft Community. I got some good ideas and did some experiments, but still failed. For more help, I decide to post this question here. (The original post: Is ...
1
vote
1
answer
1k
views
Placing CefSharp dependencies into a specific directory
I am trying to create a .net forms application that uses cefsharp, but all of the cefsharp dependencies will be placed and used from a specific directory on the PC(let' s say C:\Chromium)
I have seen ...
0
votes
1
answer
188
views
Using GRPC instead of WCF in CefSharp for .Net Core
I need to use JavaScript binding in .net core, but it doesn't support WCF. Is there any way to use GRPC instead of WCF?
1
vote
0
answers
608
views
Open link in new tab ContextMenuStrip with CefSharp and EasyTabs
I am trying to make a fully-featured web browser in C# using the chromium embedded framework also known as CefSharp. For the tab control, I am using EasyTabs.
I want to have a custom context menu ...
0
votes
0
answers
446
views
IJavascriptCallback hangs application. CefSharp
When I execute a callback in the following way, the program completely freezes:
[JavascriptIgnore]
private async Task<bool> ExecuteCallback(IJavascriptCallback callback, params object[] parms)
...
0
votes
0
answers
147
views
Are there any security issues in sending json data, b/w .NET app and React app running in Cef browser, through Cef events?
I have a .NET (WinForms) app. A React app can be launched from inside the WinForms app (this React app is loaded in Cef browser). I am able to send data between the 2 apps (WinForms and React inside ...
0
votes
0
answers
293
views
BrowserSubprocess processes remain open after closing the browser
I am using cefsharp 87.1.132. My program has the ability to clear the browser cache. After closing the browser, several BrowserSubprocess processes remain that block the cache files and prevent them ...
2
votes
1
answer
1k
views
CefSharp Javascript Callback never return resolved promise
First of all, excuse my English, it's very bad. I am using CefSharp in WinForms app for comunication between navigator and .NET code.
I'm trying to resolve a promise in an asynchronous callback ...
1
vote
1
answer
772
views
Equivalent of CEF's OnLoadingStateChange in WebView2
In my WPF application that hosts the WebView2 control, I want to
keep a track on the loading state of my browser just like how
'OnloadingStateChange' does in CEF.
How can i achieve the same thing in ...