C# WinForms使用CefSharp内嵌网页

CefSharp是一个基于Chromium的开源.NET库 , 可以在C#应用程序中嵌入Web浏览器 。以下是使用CefSharp内嵌网页的步骤:
 
1. 安装CefSharp NuGet包:在Visual Studio中打开NuGet包管理器 , 搜索并安装CefSharp.WinForms或CefSharp.Wpf , 根据应用程序的类型选择相应的包 。
 
2. 创建CefSharp浏览器控件:在windows Forms或WPF应用程序中 , 创建一个WinForms或WPF控件 , 并将其设置为CefSharp的浏览器控件 。例如 , 在Windows Forms应用程序中 , 可以使用以下代码创建一个CefSharp浏览器控件:
 
```csharp
using CefSharp;
using CefSharp.WinForms;
 
public partial class Form1 : Form
{
private ChromiumWebBrowser browser;
 
public Form1()
{
InitializeComponent();
 
Cef.Initialize(new CefSettings());
 
browser = new ChromiumWebBrowser("https://www.google.com");
browser.Dock = DockStyle.Fill;
this.Controls.Add(browser);
}
 
protected override void OnFormClosing(FormClosingEventArgs e)
{
Cef.Shutdown();
base.OnFormClosing(e);
}
}
```
 
3. 加载网页:使用浏览器控件的Load方法加载网页 。例如 , 可以使用以下代码加载本地html文件:
 
```csharp
browser.Load("file:///C:/path/to/index.html");
```
 
4. 与JAVAScript交互:使用CefSharp提供的方法 , 可以在C#代码和JavaScript代码之间进行交互 。例如 , 可以使用以下代码在JavaScript中调用C#方法:
 
```csharp
public class JsObject
{
public void ShowMessage(string message)
{
MessageBox.Show(message);
}
}
 
browser.RegisterJsObject("myObj", new JsObject());
```
 
在JavaScript中 , 可以使用以下代码调用C#方法:
 
```javascript
myObj.ShowMessage("Hello from JavaScript!");
```
 
上面的代码会在C#中弹出一个消息框 , 显示“Hello from JavaScript!” 。
 
注意 , 为了保证安全性 , CefSharp默认禁用了跨域请求 。如果需要在CefSharp中进行跨域请求 , 可以在CefSharp的初始化代码中添加以下选项:
 
```csharp
var settings = new CefSettings();
settings.CefCommandLineArgs.Add("disable-web-security", "1");
Cef.Initialize(settings);
```
 
这样就可以在CefSharp中进行跨域请求了 。

【C# WinForms使用CefSharp内嵌网页】


    推荐阅读