You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
amaitland 29be100b57 Add new Resharper settings (upgraded to new version) 10 years ago
CefSharp Add GetMainFrame and GetFocusedFrame to IWebBrowser 10 years ago
CefSharp.BrowserSubprocess It's time for copyright updates again. Yay! 10 years ago
CefSharp.BrowserSubprocess.Core Merge pull request #988 from rassilon/CefFrameWrapper 10 years ago
CefSharp.Core Switch the nullptr checks around...pedantic I know :) 10 years ago
CefSharp.Example Pass CefSharpBrowserWrapper instance (IBrowser) into IDownloadHandler - for now not populating the IBrowserAdapter property as there's currently no way to grantee when the resource would be released/disposed. 10 years ago
CefSharp.OffScreen Add GetMainFrame and GetFocusedFrame to IWebBrowser 10 years ago
CefSharp.OffScreen.Example Remove unnecessary + from event handler assignment 10 years ago
CefSharp.Test Upgrade to 3.2272.30 - API changed so build is broken, more changes to follow 10 years ago
CefSharp.WinForms Reorder a few more things in the WinForms code 10 years ago
CefSharp.WinForms.Example Resharper inspired cleanup of BrowserForm - mostly remove redundant type arguments from anon delegates 10 years ago
CefSharp.WinForms.Test 1.25.2 coming up. 12 years ago
CefSharp.Wpf Add GetMainFrame and GetFocusedFrame to IWebBrowser 10 years ago
CefSharp.Wpf.Example Merge remote-tracking branch 'origin/cef/2272' into CefFrameWrapper 10 years ago
NuGet Merge remote-tracking branch 'origin/master' into cef/2272 10 years ago
old move current tests into old/ 14 years ago
.gitattributes add *.vcproj to .gitattributes 13 years ago
.gitignore Add Visual Studio 2015 support 10 years ago
Build.bat Added build.bat script for slightly more convenient NuGet compiling 11 years ago
CONTRIBUTING.md Update CONTRIBUTING.md 11 years ago
CefSharp.Native.props Re-Add CefSharp.Native.props - needed for browser subprocess 11 years ago
CefSharp.props Add Visual Studio 2015 support 10 years ago
CefSharp.snk - BrowserControl now derived from Control. 15 years ago
CefSharp3.sln Remove pack.bat (no longer exists) from solution 10 years ago
CefSharp3.sln.DotSettings Add new Resharper settings (upgraded to new version) 10 years ago
LICENSE It's time for copyright updates again. Yay! 10 years ago
NuGet.config Upgrade to 3.2272.30 - API changed so build is broken, more changes to follow 10 years ago
README.WPF.md correction -> new CefSettings not new Settings 11 years ago
README.md Update README.md 10 years ago
afterbuild.example.ps1 add after build script example that shows how to automatically upload packages to myget which is useful for automated builds 11 years ago
appveyor.yml Update appveyor.yml to include new 2272 feed and change version to 41 10 years ago
build.ps1 Update build.ps1 to latest cef.redist version (should have been updated when the main project packages were updated). 10 years ago

README.md

CefSharp - Embedded Chromium for .NET

This project contains .NET CLR bindings for The Chromium Embedded Framework (CEF) by Marshall A. Greenblatt. A small Core of the bindings are written in C++/CLI but the majority of code here is C#. It can of course be used from any CLR language, e.g. C# or VB.

CefSharp provides both WPF and WinForms web browser control implementations. See the CefSharp.Wpf.Example or CefSharp.WinForms.Example projects for example web browsers built using this library; they are (at this moment) the best "documentation" of features. In addition see the CefSharp.MinimalExample repo for how CefSharp can actually be used via NuGet packages.

This project is BSD licensed, which means that it can be used from both proprietary and free/open source applications. For the full details, see the LICENSE file.

Documentation, Contact etc.

Apart from code samples mentioned above work-in-progress documentation can be found in the wiki. If something is missing/incomplete, please don't hesitate to ask on the CefSharp Google Group. You might also find help by searching the archive to that same Google Group for previous questions.

NuGet Packages

Binary releases contain everything needed to embed Chromium in your .Net/CLR application. For usage see FAQ #8 item.

Upgrading from an earlier version of CefSharp? See the ChangeLog for breaking changes and upgrade tips.

CI Builds
Every commit on master produces a Nuget package. Use at your own risk! CefSharp MyGet Feed

Pre-release
CefSharp.Wpf

Stable
CefSharp.Wpf for either WPF or WinForms or OffScreen now including JS Binding.

Ultra stable/LTS Read "He's dead Jim", based on Chromium 25. See the CefSharp1 branch README for CefSharp1 info. Please note that this version is no longer supported.

Branches & Forks

  • Development is done in the master branch, which used to be called CefSharp3 during the development cycle. New features are preferably added in feature branches, if the changes are more than trivial.
  • Ultra-stable/LTS sources are in CefSharp1.
  • The CefSharp GitHub project page is the recommended starting place. This is the "official" CefSharp fork, as maintained by the CefSharp community. You can also view the entire network of public forks/branches.

Links

  • CefGlue: An alternative .NET CEF wrapper built using P/Invoke.