码迷,mamicode.com
首页 > 其他好文 > 详细

cef chromium相关

时间:2017-10-07 14:39:40      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:command   fse   rom   运行不了   为什么   blog   serve   sdn   zed   

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相关

标签:command   fse   rom   运行不了   为什么   blog   serve   sdn   zed   

原文地址:http://www.cnblogs.com/yzy666/p/7634509.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!