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

List of visited links in CefSharp

Is there a way to get the list of visited links in the CefSharp framework? It stores them but how can we access them ?
World Boss
  • 25
  • 1
  • 6
0
votes
2 answers

Detect parents' and grandparents' links in Javascript

I am making a Web Browser in C# and displaying custom context menus based on the element right clicked by the user. I am having trouble figuring out which elements should be treated as links? if (el_tag == "a") showLinkMenu(); else if (el_tag…
World Boss
  • 25
  • 1
  • 6
0
votes
1 answer

Can't load website in CefSharp

I'm trying to load a website URL using RegisterJsObject in one of two cefsharp instances. The URL is received from the website (chromeBrowser1) however It wont update the window (chromeBrowser2). I tried to document the script as much as possible…
rgerculy
  • 481
  • 5
  • 14
0
votes
1 answer

WPF C# CefSharp Navigate URL

I want to navigate new link like VS in webbrowser control but i can't this with wpf. This for ie; WebBrowser.Navigate("http://www.bing.com"); How is it done with CefSharp in WPF?
EgoistDeveloper
  • 775
  • 2
  • 13
  • 37
0
votes
1 answer

CefSharp how to store cookies

I can't get cookies to save in CefSharp. Here is what I tried: CefSettings settings = new CefSettings(); string path = Environment.GetFolderPath(Environment.SpecialFolder.Desktop); Cef.Initialize(new CefSettings()); …
Andre
  • 41
  • 1
  • 8
0
votes
0 answers

Cefsharp installation crashes on installation, but running through VS

I wanted to use chrome in my WinForms applications. This is what I have done:- Created application. Downloaded and installed Cefsharp.Winforms (53.0.1) It added following:- In app.config I added following:-
Defry
  • 84
  • 6
0
votes
0 answers

Audio, video tags in HTML 5 is not working in my WPF application through cefsharpchromium browser

Am using cefsharp chromium browser to load a web page within my WPF application. While running the web application directly in the browser , Am able to view video and audio is also working. But While am trying to load the web page in my WPF…
Loga Guhan
  • 11
  • 2
0
votes
0 answers

Handle new windows in Cefsharp (Winforms)

I'm new to cefsharp and i cant seem to wrap my head around how I'd be able to handle popups in the simplest manner. These are popups such as when the page requests a new tab, or even when a confirm/alert is fired. Everything is fine and all with the…
Shanzid Shaiham
  • 69
  • 2
  • 15
0
votes
0 answers

CefSharp minimal example - A blank window shows/disappears

I haven't seen any posts concerning this, so perhaps someone can help. On the minimal example, A blank window opens and immediately disappears only on the first opening of the browser. I'd like a way to suppress this behavior. To reproduce, change…
0
votes
0 answers

CefSharp proxy-server

I have an application which loads some pages and searches for some information and it should retrieve it. The problem is that no page load when I have a proxy set from LAN Settings. Without proxy, it works perfectly fine (as well as when I set the…
0
votes
1 answer

c# CefSharp browser cant most sites

Hi basically what the title says. I am trying to have twitch open and play a video inside my application. settings are var settings = new CefSettings(); if (Cef.IsInitialized) { } else { …
lostknight
  • 109
  • 6
0
votes
0 answers

CefSharp.WinForms won't load pages?

Hello i am trying to load pages on my panel in win Forms but it won't render it? here is my code: private GeoCoordinateWatcher watcher = null; public ChromiumWebBrowser myBrowser; private string _username; public MainForm() { …
Selim
  • 11
  • 6
0
votes
1 answer

CefSharp - Formatting

I am trying to use CefSharp as a pretty basic HTML Browser for an application that I am making. It's going to be used to browse a website that is used at the company I work for. However, when looking at the website in Chrome vs CefSharp it looks…
7H3LaughingMan
  • 372
  • 1
  • 15
0
votes
1 answer

Outlook Cannot load file or assembly CefSharp.Core.dll

I am trying to host CefSharp.Winform (Chromium web browser control for winform) in VSTO Outlook addin using VS2015 with no success. The steps I am following are: Create a outlook 2013 addin project. change solution setting from any CPU to x86…
Jim
  • 2,760
  • 8
  • 42
  • 66
0
votes
1 answer

CefSharp.WPF integration with Caliburn.Micro

I'm trying to get CefSharp to play nicely with Caliburn.Micro, but that wasn't as easy as I'd hoped. It's probably still easy but I'm just not familiar enough with either of them. I added a browser component to my view:
TheHvidsten
  • 4,028
  • 3
  • 29
  • 62
1 2 3
99
100