-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
225 lines (199 loc) · 11.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href='https://fonts.googleapis.com/css?family=Ubuntu:400,500' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/github-light.css" media="screen">
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script>
((window.gitter = {}).chat = {}).options = {
room: 'cefsharp/CefSharp'
};
</script>
<script src="https://sidecar.gitter.im/dist/sidecar.v1.js" async defer></script>
<title>CefSharp - Open Source web browser for WinForms and WPF Apps</title>
</head>
<body>
<header>
<div class="inner">
<h1><img style="margin-top:0px" src="images/logo2.png" height="150px" alt="CEFSharp"></h1>
<ul class="threed-menu">
<li><a href="https://github.com/cefsharp/CefSharp/wiki/Quick-Start" class="threed-item">
Quick Start
<span aria-hidden="true" class="threed-item-box">
<span class="threed-front">Quick Start</span>
<span class="threed-back">Quick Start</span>
</span>
</a></li>
<li><a href="https://github.com/cefsharp/CefSharp/" class="threed-item">
GitHub
<span aria-hidden="true" class="threed-item-box">
<span class="threed-front">GitHub</span>
<span class="threed-back">GitHub</span>
</span>
</a></li>
<li><a href="https://github.com/cefsharp/CefSharp/wiki/" class="threed-item">
Wiki
<span aria-hidden="true" class="threed-item-box">
<span class="threed-front">Wiki</span>
<span class="threed-back">Wiki</span>
</span>
</a></li>
<li><a href="https://www.nuget.org/packages/CefSharp.WinForms/" class="threed-item">
WinForms NuGet
<span aria-hidden="true" class="threed-item-box">
<span class="threed-front">WinForms NuGet</span>
<span class="threed-back">WinForms NuGet</span>
</span>
</a></li>
<li><a href="https://www.nuget.org/packages/CefSharp.WPF/" class="threed-item">
WPF NuGet
<span aria-hidden="true" class="threed-item-box">
<span class="threed-front">WPF NuGet</span>
<span class="threed-back">WPF NuGet</span>
</span>
</a></li>
</ul>
</div>
</header>
<div id="main">
<div id="main-content">
<div class="featlist">
<div class="featlist-text">
<div class="featlist-title">Full Web Browser in your .Net App</div>
<div class="featlist-desc">
CefSharp is an easy way to embed a full-featured standards-compliant web browser into your C# or VB.NET app. CefSharp has browser controls for WinForms and WPF apps, and a headless (offscreen) version for automation projects too. CefSharp is based on <a href="https://bitbucket.org/chromiumembedded/cef">Chromium Embedded Framework</a>, the open source version of <a href="https://www.google.com/chrome/">Google Chrome</a>. We have a simple list of steps to get you started. See the <a href="https://github.com/cefsharp/CefSharp/wiki/Quick-Start">Quick Start</a> guide and the <a href="https://github.com/cefsharp/CefSharp/wiki/Frequently-asked-questions">FAQ</a>.
</div>
<div class="featlist-code">
</div>
</div>
<div class="featlist-img"><img style="margin-top:0px" src="images/diagram1.png"></div>
</div>
<div class="horizontal-space-small"></div>
<div class="featlist">
<div class="featlist-text">
<div class="featlist-title">HTML5, JavaScript and PDF supported</div>
<div class="featlist-desc">
CefSharp embraces modern web standards, and supports HTML5, JavaScript, CSS3 and HTML5 audio/video elements. 3D content is supported via WebGL which uses OpenGL/DirectX for hardware accelerated rendering. CefSharp includes <a href="https://github.com/cefsharp/CefSharp/wiki/Output-files-description-table-(Redistribution)">embedded modules</a> for PDF, web page printing and the WebKit Inspector (developer tools). CefSharp has no external dependencies, and the full build of CefSharp only adds ~120 MB to your app. See the <a href="https://github.com/cefsharp/CefSharp/wiki/Output-files-description-table-(Redistribution)">Output files description table (Redistribution)</a> for details.
</div>
<div class="featlist-code">
</div>
</div>
<div class="featlist-img"><img style="margin-top:0px" src="images/diagram2.png"></div>
</div>
<div class="horizontal-space-small"></div>
<div class="featlist">
<div class="featlist-text">
<div class="featlist-title">Deep Integration</div>
<div class="featlist-desc">
<ul>
<li>
You can programmatically <a href="https://github.com/cefsharp/CefSharp/wiki/General-Usage#1-how-do-you-call-a-javascript-method-from-net">execute Javascript</a>, <a href="https://github.com/cefsharp/CefSharp/wiki/General-Usage#3-how-do-you-expose-a-net-class-to-javascript">expose .Net classes</a> to JavaScript, and receive <a href="https://github.com/cefsharp/CefSharp/wiki/Frequently-asked-questions#JSEvent">callbacks</a> when JavaScript events fire.
</li>
<li>
You can programmatically call DevTools methods
</li>
<li>
DOM access via <a href="https://github.com/cefsharp/Puppeteer">CefSharp Puppeteer</a> a port of Puppeteer Sharp specifically for use with CefSharp, direct communication with the browser (no remote debugging port).
</li>
<li>
You can use CefSharp to display embedded UI built with HTML5, or to display remote web content and web applications.
</li>
<li>
You can integrate ASP.Net Core directly via <a href="https://github.com/amaitland/Chromium.AspNetCore.Bridge">Chromium.AspNetCore.Bridge</a> to embed your .Net Website directly into CefSharp (no network connection required).
</li>
</ul>
See the <a href="https://github.com/cefsharp/CefSharp.MinimalExample">CefSharp.MinimalExample</a> project for ready-to-compile minimal example apps built with CefSharp.
Within the projects <a href="https://github.com/cefsharp/CefSharp">source</a> there are more complicated example projects.
</div>
<div class="featlist-code">
</div>
</div>
<div class="featlist-img"><img style="margin-top:0px" src="images/diagram3.png"></div>
</div>
<div class="horizontal-space-small"></div>
<div class="featlist">
<div class="featlist-text">
<div class="featlist-title">Warp-drive Performance</div>
<div class="featlist-desc">
Leverage the slick <a href="https://en.wikipedia.org/wiki/Chromium_(web_browser)">Chromium</a> web browser for a buttery-smooth user experience. CefSharp outperforms every other C# web browser control, including <a href="https://bitbucket.org/geckofx/">GeckoFX</a>, <a href="https://code.google.com/p/open-webkit-sharp/">OpenWebkitSharp</a>, <a href="http://webkitdotnet.sourceforge.net/">WebKit.NET</a> and <a href="https://www.awesomium.com/">Awesomium</a>. CefSharp initializes in <10 ms, and web pages are displayed as they load (progressive rendering).
</div>
<div class="featlist-code">
</div>
</div>
<div class="featlist-img"><img style="margin-top:0px" src="images/diagram4.png"></div>
</div>
<div class="horizontal-space-small"></div>
<div class="featlist">
<div class="featlist-text">
<div class="featlist-title">Free and Open Source</div>
<div class="featlist-desc">
CefSharp is an open source .NET wrapper around the fantastic <a href="https://bitbucket.org/chromiumembedded/cef">Chromium Embedded Framework</a>. And we provide <a href="https://github.com/cefsharp/CefSharp">full source code</a> in C# and C++/CLI. You can use the code to hack, improve, fork or simply debug your applications better. CefSharp is <a href="https://opensource.org/licenses/BSD-3-Clause">BSD licensed</a>, which means that it can be used for proprietary and free/open source applications. If you are using CefSharp in a commercial application please consider sponsoring the maintainer via <a href="https://github.com/sponsors/amaitland">GitHub Sponsors</a>.
</div>
<div class="featlist-code">
</div>
</div>
<div class="featlist-img"><img style="margin-top:0px" src="images/diagram5.png"></div>
</div>
<div class="horizontal-space-small"></div>
<div class="featlist">
<div class="featlist-text">
<div class="featlist-title">Multiple Flavors</div>
<div class="featlist-desc">
CefSharp is available in multiple <b>flavors</b>:
<ul>
<li><a href="https://www.nuget.org/packages/CefSharp.WinForms/">CefSharp.WinForms</a> provides browser UI Control for Windows Forms applications</li>
<li><a href="https://www.nuget.org/packages/CefSharp.WPF/">CefSharp.WPF</a> provides browser UI Control for WPF applications</li>
<li><a href="https://github.com/cefsharp/CefSharp.Wpf.HwndHost">CefSharp.Wpf.HwndHost</a> provides browser UI Control for WPF applications that is the equivilent of hosting the WinForms version in WPF.</li>
<li><a href="https://www.nuget.org/packages/CefSharp.OffScreen/">CefSharp.OffScreen</a> provides a "headless" browser control for automation projects</li>
<li>CefSharp supports rendering of embedded HTML content for HTML-based UI</li>
<li>CefSharp supports x86, x64 and ARM64 platforms (Windows Only)</li>
</ul>
CefSharp has a few <b>dependencies</b>:
<ul>
<li>Microsoft .NET 4.5.2 or greater</li>
<li><a href="https://support.microsoft.com/en-au/help/2977003/the-latest-supported-visual-c-downloads">Visual C++ Runtime 2019</a> or greater. (Visual C++ 2022 Runtime is backwards compatible)</li>
<li>NuGet packages are available for <a href="https://www.nuget.org/packages/CefSharp.WinForms/">WinForms</a>, <a href="https://www.nuget.org/packages/CefSharp.WPF/" >WPF</a> and <a href="https://www.nuget.org/packages/CefSharp.OffScreen/">OffScreen</a>.</li>
</ul>
</div>
<div class="featlist-code">
</div>
</div>
<div class="featlist-img"><img style="margin-top:30px" src="images/diagram7.png"></div>
</div>
<div class="horizontal-space-small"></div>
<div class="featlist">
<div class="featlist-text">
<div class="featlist-title">Documented and Supported</div>
<div class="featlist-desc">
Start with these online resources:
<ul>
<li><a href="https://github.com/cefsharp/CefSharp/wiki/Quick-Start">Quick Start</a> which helps you integrate CefSharp into your WinForms/WPF project</li>
<li><a href="https://github.com/cefsharp/CefSharp/wiki/Frequently-asked-questions">FAQ</a> / <a href="https://github.com/cefsharp/CefSharp/wiki/Trouble-Shooting">Troubleshooting</a> for common how-to's and help with common issues</li>
<li><a href="https://github.com/cefsharp/CefSharp/wiki">Wiki</a> with a collection of help files for new users, existing users and contributors</li>
</ul>
Access these forums if you need help :
<ul>
<li><a href="https://stackoverflow.com/tags/cefsharp/">StackOverflow Tag</a> to browse or answer questions relating to CefSharp</li>
<li><a href="https://github.com/cefsharp/CefSharp/issues">Github Issues</a> to submit a bug report or feature request</li>
</ul>
</div>
<div class="featlist-code">
</div>
</div>
<div class="featlist-img"><img style="margin-top:30px" src="images/diagram6.png"></div>
</div>
<div class="horizontal-space-small"></div>
</div>
</div>
</div>
<div id="top-header">
</div>
</body>
</html>