WinForm使用CefSharp内嵌chrome浏览器
2021-06-23 17:05
标签:运行图 void 调试运行 ima chrome浏览器 引用 sha 4.0 use WinForm使用CefSharp内嵌chrome浏览器 标签:运行图 void 调试运行 ima chrome浏览器 引用 sha 4.0 use 原文地址:https://www.cnblogs.com/romanticcrystal/p/10188689.html先贴运行图:亲测可用!以图为证!
开始!
1.创建winform程序,使用.NET 4.5.2或以上(vs2010最高支持.NET 4.0,我使用的是vs2017)。这一步容易忽略,简单的说就是将项目.net版本改为4.5.2或以上
否则下面即使引用了dll也是报错的
2.在解决方案上右键->"属性"->"生成"->"目标平台",选择x86或x64,Cef暂不支持"Any CPU"。
3.下载并解压CefSharp编译好的文件,注意是32位还是64位。
CefSharp v51 x86 (for32-bit apps)(点击下载)
CefSharp v51 x64 (for 64-bit apps)(点击下载)
4.将下载下来的文件解压,然后全部复制到程序bin\Debug目录。
5.项目右键"添加引用",找到:
CefSharp.dll
CefSharp.Core.dll
CefSharp.WinForms.dll
添加引用到项目。
6.编写测试代码:
using CefSharp;
using CefSharp.WinForms;
public ChromiumWebBrowser browser;
public void InitBrowser(){
Cef.Initialize(new CefSettings());
browser = new ChromiumWebBrowser ("http://liulanmi.com/labs/core.html");
this.Controls.Add(browser);
browser.Dock = DockStyle.Fill;
}
在InitializeComponent()方法中调用 InitBrowser()。
7.F5调试运行即可。
上一篇:c# 继承特点(1)
文章标题:WinForm使用CefSharp内嵌chrome浏览器
文章链接:http://soscw.com/index.php/essay/97843.html