cef chromium相关
Posted 这家伙!~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cef chromium相关相关的知识,希望对你有一定的参考价值。
1、CefSharp.BrowserSubprocess进程隐藏
在from里加入多个cef控件后windows任务管理器里面也会显示多个进程CefSharp.BrowserSubprocess.exe,CefSharp.BrowserSubprocess。
解决办法:使用如下方法可以把cef的进程合并到程序exe里面。
if (!Cef.IsInitialized) { var settings = new CefSettings(); settings.Locale = "zh-CN"; settings.CefCommandLineArgs.Add("no-proxy-server", "0"); settings.CefCommandLineArgs.Add("single-process", "1"); Cef.Initialize(settings, true, true); //Cef.Initialize(); }
即在配置中增加 settings.CefCommandLineArgs.Add("single-process", "1");
http://blog.csdn.net/weolar/article/details/51994895
为什么xp下运行不了 答:从chromium45开始,官方就宣布不支持xp了。不过实际到M50才不支持。可以自己改代码,去掉xp没有的api。大概10多处
CefSharp中文帮助文档https://github.com/cefsharp/CefSharp/wiki/CefSharp%E4%B8%AD%E6%96%87%E5%B8%AE%E5%8A%A9%E6%96%87%E6%A1%A3
以上是关于cef chromium相关的主要内容,如果未能解决你的问题,请参考以下文章