Questions tagged [cefsharp]

.NET (WPF and Windows Forms) bindings for the Chromium Embedded Framework

CefSharp is an open-source project which provides WPF and WinForms web browser control implementations to embed Chromium in .NET application. It can be used from C# or VB, or any other CLR language.

This tag can be used as an alternative and/or complement to the Google Group for the project.

1702 questions
0
votes
0 answers

Cefsharp not displaying images

I'm trying to display images in my WPF application. I'm getting a path for each image, and then creating an html website with which to display the image. StringBuilder sb = new StringBuilder(); sb.Append("
ASDASDASD
  • 16
  • 3
0
votes
1 answer

How disable sound in Cefsharp Offscreen

How disable sound in Cefsharp Offscreen. In the official documentation did not find this information. A sound when the browser is annoying because like no program is open and there are alerts and other sounds.
0
votes
0 answers

Cef can only be initialized once. Use Cef.IsInitialized to guard against this exception

I am trying to code an application that will launch several different browser, each with a different proxy, so I use Cef.Initialize to give a different proxy to each of my browser, but here I get this error and am not sure what I am doing…
0
votes
0 answers

Passing JavaScript string from web page to C# Winforms?

I have a web page embedded into CefSharp webview. That web page is using a setInterval JS function to check if there is a new message into the database every XX seconds. Is there a way to make a C# Winforms notification once the web page have found…
yanuck
  • 11
  • 2
0
votes
0 answers

Cefsharp trigger loaded without assets

I used FrameLoadEnd event to handle my code but it seems function will trigger when all assets loaded is there any way to handle main page loaded before assets loaded?
江晉緯
  • 3
  • 4
0
votes
0 answers

could not load file or assembly 'cefsharp.core '

I created a winform applocation c# and using cefsharp. project works on dev machine, but it does not run on other machines. other machines shows the following error: could not load file or assembly 'cefsharp.core 63.0.3.0' or one of its…
abbas derafshi
  • 307
  • 1
  • 11
0
votes
0 answers

Cefsharp blank pdf window

I'm currently using Cefsharp to frame in a web application but I'm having trouble getting the dynamically generated pdfs to open or download. Currently when I run one of them I get a new window that pops up but it's blank. When I click the reports…
JLudt
  • 9
  • 6
0
votes
0 answers

Trying to use XAML binding to VM with CefSharp.ChromiumWebBrowser appears to not work in WPF

CEFSharp was contacted directly and told me to post this here. So here goes: I was curious as I made a clone of the solution CEF gives here: https://github.com/cefsharp/CefSharp. I am seeing all invocation of the context menu is done in code…
djangojazz
  • 14,131
  • 10
  • 56
  • 94
0
votes
0 answers

Session and JavaScript Object in CefSharp Library

Currently, I am working in a WPF application where we are using Awesomium tool to add web-browser but as that is already outdated we are trying to shift from Awesomium library to CefSharp library (Using CefSharpe and CefSharp.wpf Library). At the…
Babu
  • 440
  • 5
  • 23
0
votes
0 answers

CefSharp offscreen with .net core 2.0 Runtime Error , System.IO.FileNotFoundException: 'Could not load file or assembly 'CefSharp.Core,

I am getting this error System.IO.FileNotFoundException: 'Could not load file or assembly 'CefSharp.Core, Version=63.0.3.0, Culture=neutral, PublicKeyToken=40c4b6fc221f4138'. The system cannot find the file specified.' I am trying to run the…
0
votes
1 answer

Modify Expiration Data on a Cookie in CefSharp

I have an application which uses CefSharp to access an internal web page. Once of the "tabs" on that internal web page loads up a third party website in an iFrame. That website has to ability to save some defaults. It does so by setting a cookie…
StarDestroyer
  • 63
  • 1
  • 8
0
votes
0 answers

CefSharp Run .net task from javascript

I am using cefsharp.Wpf and I need to run 2 commands togheter. This is the object I am binding to my javascript public class CefSharpCommonObject { public dynamic Start() { var response = dummyProc.Start(); return new …
Or Betzalel
  • 2,427
  • 11
  • 47
  • 70
0
votes
0 answers

drag no border cef winform

Problem I need to resize no border form,But when ChromiumWebBrowser's dock is fill, CEF will eat mouse related information, dragging the form becomes very insensitive. I observed Google Chrome, when the mouse outside the form can be dragged to…
0
votes
0 answers

CefSharp.wpf and clearing the browser

Just getting started w/ CefSharp.wpf and I have looked thru the documentation but I have not found this (yet). I am guessing it is there and I have just overlooked it so far. I have been testing/playing w/ CefSharp.wpf and I am happy with how…
Mark Parr
  • 319
  • 5
  • 11
0
votes
1 answer

Flash SWF inside CefSharp browser doesn't appear to register double click events

There is a lot of things to be considered here so I was just generally wondering if anyone has gotten a SWF flash file to fully work inside a CefSharp browser in WPF more specifically the double-click events for the flash SWF. Right now everything…