[掌眼]Xilium.CefGlue + CEF 3.1916.1721 (Chromium 35.0.1916.86)

项目主页:https://bitbucket.org/xilium/xilium.cefglue/wiki/Home

Xilium.CefGlue:https://bitbucket.org/xilium/xilium.cefglue/get/master.zip

CEF3:https://cefbuilds.s3.amazonaws.com/1916/win/35.0.1916.86/cef_binary_3.1916.1721_windows32.7z (用迅雷下载)

CEF(Chromium Embedded Framework) 是什么?

CEF 的官网介绍的很简洁:A simple framework for embedding chromium browser windows in other applications. 具体地说就是一个可以将浏览器功能(页面渲染,JS 执行)嵌入到其他应用程序的框架。

CEF有两个版本,CEF1和CEF3

CEF1是单进程的,实现了更多的特性,内存使用更少,与客户端应用更能完美的结合,使用的是WebKit的API,但是FLASH无法在这个框架中正常播放,不支持html5的音频和视频,只支持NPAPI插件。

CEF3是多进程的,使用异步消息的方式来完成主进程和其他进程的通信(其他进程有可能是Webkit,也有可能是V8的解析引擎进程),使用的是chromium官方的内容呈现API,支持NPAPI和PPAPI插件,有一个单独的进程用于调试,相对于CEF1来说,可以播放FLASH等视频

授权协议:该项目基于MIT许可协议及部分BSD授权。

[掌眼]Xilium.CefGlue + CEF 3.1916.1721 (Chromium 35.0.1916.86)

时间: 2024-10-27 07:00:24

[掌眼]Xilium.CefGlue + CEF 3.1916.1721 (Chromium 35.0.1916.86)的相关文章

Xilium.CefGlue CEF Chrome 自动上传文件不弹出对话框 CefDialogHandler

关键代码如下,如何使用Handler,还不清楚的请继续搜索 internal sealed class WyzCefDialogHandler : CefDialogHandler    {               protected override bool OnFileDialog(CefBrowser browser, CefFileDialogMode mode, string title, string defaultFilePath, string[] acceptFilter

CEF Xilium.CefGlue 在当前窗口中打开所有链接(防止弹窗)

我们在使用Xilium.CefGlue编写浏览器应用程序时,对于嵌入的网页如果有链接会在新窗口打开,这样的用户体验会很差,因此我们需要修改程序,使所有链接都在当前窗口中打开. 首先引用Xilium.CefGlue.dll文件,需要继承Xilium.CefGlue 中的CefLifeSpanHandler类 namespace Xilium.CefGlue { // 摘要: // Implement this interface to handle events related to browse

[掌眼]iOS / Android / java / node.js 通用的 AES256 加解密算法

example.m NSString *text = @"text"; NSString *key32 = @"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; NSData *data = [text dataUsingEncoding:NSUTF8StringEncoding]; NSString *encryptedData = [[data AES256EncryptWithKey:key32] base64EncodedStringWi

[掌眼]微信支付测试返回:access_control:not_allow或system:access_denied

转自:http://mp.weixin.qq.com/qa/index.php?qa=11634&qa_1=%E6%94%AF%E4%BB%98%E8%BF%94%E5%9B%9E%EF%BC%9Aaccess_control-not_allow&show=16550 感谢:乐游旅游 比如我的测试js支付的页面是 http://10.10.x.y/test/wxpay .首先要将"商户功能"->支付测试 下的"支付测试目录"改成  http:/

[掌眼]Android WebView Long Press长按保存图片到手机

具体效果可见"掌眼"掌拍古玩江湖:http://bbs.guwanch.com private String imgurl = ""; /*** * 功能:长按图片保存到手机 */ @Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) { super.onCreateContextMenu(menu, v, menuInfo); Me

[掌眼]UIWebView 显示正在加载网页

具体效果可见"掌眼"掌拍古玩江湖:http://bbs.guwanch.com - (void)webViewDidStartLoad:(UIWebView *)webView { [UIApplication sharedApplication].networkActivityIndicatorVisible = YES; } - (void)webViewDidFinishLoad:(UIWebView *)webView { [UIApplication sharedApplic

[掌眼]Wait For Review时重新提交App

进入iTunes Connect Manage Your Apps->New Version->View Details Links->Binary Details->Reject This Binary->Reject Binary->Done Ready to Upload Binary->No No No->Continue->Automatically release->Save 然后在Xcode重新Archive->Distrib

[掌眼]IOS UIWebView Long press save image 长按图片保存到手机

具体效果可下载"掌眼"古玩江湖进行测试:http://bbs.guwanch.com ViewController.h @interface ViewController : CDVViewController<UIActionSheetDelegate>{ NSTimer *_timer; // 用于UIWebView保存图片 int _gesState; // 用于UIWebView保存图片 NSString *_imgURL; // 用于UIWebView保存图片 }

[掌眼]解决Castle.ActiveRecord在ASP.NET或WCF环境中HttpContext.Current无效的错误

AR設定檔要指定threadinfotype,不指定的話,預設值是用WebThreadScopeInfo,是用 HttpContext.Current.Items 來存放 SesionScope,所以碰到與UI無關的執行緒,沒有 HttpContext.Current 程式就掛啦. 解决方案一: 1.检查“web.config” <activeRecord isWeb="true" isDebug="false"> <config>... .