Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/cefsharp/CefSharp

.NET (WPF and Windows Forms) bindings for the Chromium Embedded Framework
https://github.com/cefsharp/CefSharp

browser c-plus-plus c-sharp cefsharp framework winforms wpf

Last synced: about 1 month ago
JSON representation

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

Lists

README

        

# README (WPF)

This file provides some basic information about how to use the CefSharp.Wpf NuGet package.

CefSharp is based on CEF (Chromium Embeddable Framework), which is composed of a number of .dll and .pak files. For this reason, it's not enough to just add .NET reference to the CefSharp.Wpf and the CefSharp assemblies; the other .dll/.pak files must also exist in your projects "Output path" (as defined in the Visual Studio project properties.

This is done automatically by the CefSharp.Wpf NuGet package (or the packages it depend on). However, it is only possible to copy these files into *either* the Debug or Release target of your project. Because it is the default when creating a new project, and the target which is normally used when developing .NET applications, I have chosen to place them in the bin\Debug folder for now. This means that if you want to run your application in Release mode, you need to copy these files from bin\Debug to bin\Release for the moment.

To be able to use CefSharp.Wpf, you basically just have to add a ChromiumWebBrowser like this:

``` xml



```

...and in the code-behind some code like this:

``` csharp
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();

Cef.Initialize(new CefSettings());
}
}
```