使用CefSharp在.NET中嵌入Google kernel

原文:使用CefSharp在.NET中嵌入Google kernel

  使用CefSharp可以在.NET轻松的嵌入Html,不用担心WPF与Winform 控件与它的兼容性问题,CefSharp大部分的代码是C#,它可以在VB或者其他.NET平台语言中来进行使用。

  近几天来,公司项目中需要使用WebBrowser,其中考虑了几个控件,如1.Winform中的WebBrowser    2.WPF中的WebBrowser    3.WebKit.Net     4.CefSharp

  Winform的WebBrowser放到项目中进行了实验和处理,发现致命问题:AllowsTransparency = true 和 Webbrowser 等内置窗体显示冲突,导致不发选择,还有就是GC回收不及时,一下子就飙到了100MB+.

  后来考虑WPF的webbrowser 它实际上还是封装了Winform,有个严重的问题就是它一直置顶到最顶层,so,无法选择。

  再后来考虑WebKit.Net ,但发现已经N多年没有更新,所以不在考虑...

  最后跌跌撞撞跑到CefSharp,发现非常的坑啊!!竟然不支持AnyCPU,关键是我的项目中有的功能是必须AnyCpu启动的啊!还好,官方在去年已经公布了支持AnyCpu的方法。

  首先Nuget引用cefsharp.WPF,它会自己引用Common,其他不用管。我们还需要再App.xaml.cs中添加代码来支持AnyCpu。

    public partial class App : Application
    {
        public App()
        {
            //Add Custom assembly resolver
            AppDomain.CurrentDomain.AssemblyResolve += Resolver;

            //Any CefSharp references have to be in another method with NonInlining
            // attribute so the assembly rolver has time to do it‘s thing.
            InitializeCefSharp();
        }

        [MethodImpl(MethodImplOptions.NoInlining)]
        private static void InitializeCefSharp()
        {
            var settings = new CefSettings();

            // Set BrowserSubProcessPath based on app bitness at runtime
            settings.BrowserSubprocessPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase,
                                                   Environment.Is64BitProcess ? "x64" : "x86",
                                                   "CefSharp.BrowserSubprocess.exe");

            // Make sure you set performDependencyCheck false
            Cef.Initialize(settings, performDependencyCheck: false, browserProcessHandler: null);
        }

        // Will attempt to load missing assembly from either x86 or x64 subdir
        // Required by CefSharp to load the unmanaged dependencies when running using AnyCPU
        private static Assembly Resolver(object sender, ResolveEventArgs args)
        {
            if (args.Name.StartsWith("CefSharp"))
            {
                string assemblyName = args.Name.Split(new[] { ‘,‘ }, 2)[0] + ".dll";
                string archSpecificPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase,
                                                       Environment.Is64BitProcess ? "x64" : "x86",
                                                       assemblyName);

                return File.Exists(archSpecificPath)
                           ? Assembly.LoadFile(archSpecificPath)
                           : null;
            }

            return null;
        }
        private void Application_Startup(object sender, StartupEventArgs e)
        {
        }
    }

  还没完,之后你得在你项目的 *.csproj 中添加一行配置,它是在你的第一个PropertyGroup中添加的。

最后一步,在App.config中配置x86,当然不是说不支持CPU,刚刚App.xaml.cs中我们已经修改了啊。

<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <probing privatePath="x86"/>
    </assemblyBinding>
  </runtime></...>

就现在我们在页面中添加一个CefSharpBrowser在grid中,您需要在容器空间中添加name 标记。

 public static ChromiumWebBrowser cefSha { get; set; }
        public Visualization()
        {
            InitializeComponent();
        }
        private void Page_Loaded(object sender, RoutedEventArgs e)
        {
            cefSha = new ChromiumWebBrowser(Environment.CurrentDirectory + "/../../Pages/STORE/VisualizationHtml/StoreData.html");

            // 页面加载完毕后打开开发者工具
            cefSha.KeyboardHandler = new CEFKeyBoardHander();
            CefSharpSettings.LegacyJavascriptBindingEnabled = true;
            NewMutliPage();
            this.grid.Children.Add(cefSha);//初始化
        }

前后端交互都是在NewMutliPage中搭起的桥梁,该代码是新版本的配置方式,大概是18年底,前后端的钩子可以通过bound来偷取。

public void NewMutliPage()
        {
            cefSha.JavascriptObjectRepository.ResolveObject += (s, eve) =>
            {
                var repo = eve.ObjectRepository;
                if (eve.ObjectName == "bound")
                {
                    repo.Register("bound", new JsEvent(), isAsync: true,
                        options: new BindingOptions()
                        {
                            CamelCaseJavascriptNames = false
                        });
                }
            };
        }

老版本你可以这么配置前后端交互的桥梁。

public void OldSinglePage()
    {
        // 新版本默认为 false
        CefSharpSettings.LegacyJavascriptBindingEnabled = true;
        // 把 TestClass 注入到单个页面,名称为 test
        _chromiumWebBrowser.RegisterJsObject("testold", new TestClass());
    }
 LegacyJavascriptBindingEnabled 该属性就是让WebBrowser与WPF支持js交互,否则不可以建立jsObject 这个对象。

在 RegisterJsObject 中我们是绑定的类,该类中是我们后台向WebBrowser的所有数据方法。
public class JsEvent
    {
        /// <summary>
        /// 根据货架列代码区查相关信息
        /// </summary>
        /// <param name="Sline_code"></param>
        public void GetobjBySline_Code(string Sline_code)
        {
            Visualization.cefSha.ExecuteScriptAsync($@"getgoods({
                Newtonsoft.Json.JsonConvert.SerializeObject(VisualizationDAL.GetList(Sline_code))});");
        }
        /// <summary>
        /// 获取货架信息
        /// </summary>
        /// <param name="Sline_code"></param>
        public void GetShelveDetail(string Sline_code)
        {
            //1.找到那列的所有货架
            ObservableCollection<STORE_SHELVE> shelveList = XDAL.STORE_SHELVE_DAL.GetListByLineName(Sline_code);
            //2.找到关于该列下所有的商品信息
            ObservableCollection<STORe_DetailVm> detailList = new ObservableCollection<STORe_DetailVm>();
            foreach (var item in shelveList)
            {
                XDAL.STORE_goods_Detail.GetGoodsDetail(item.Shelve_code).ToList().ForEach(obj =>
                {
                    detailList.Add(obj);
                });
            }
            #region
            List<VisualShelveVm> VisualList = new List<VisualShelveVm>();
            for (int i = 0; i < shelveList.Count; i++)
            {
                //循环最大粒子,在这个最大粒子当中来组织Json
                for (int g = 0; g < 4; g++)
                {
                    for (int l = 0; l < 4; l++)
                    {
                        var store_detail = detailList.FirstOrDefault(a => a.grid == g.ToString()
                                    && a.Shelve_code == shelveList[i].Shelve_code
                                    && a.layer == l.ToString());
                        //如果未出库的里没有这个 那就可以添加
                        if (store_detail != null)
                        {
                            VisualList.Add(new VisualShelveVm()
                            {
                                shelve_grid = g.ToString(),
                                shelve_layer = l.ToString(),
                                shelve_code = shelveList[i].Shelve_code,
                                shelve_name = shelveList[i].Shelve_name,
                                isHas = true,
                                goods_code = store_detail.Goods_code,
                                goods_name = store_detail.Goods_name
                            });
                        }
                        else
                        {
                            VisualList.Add(new VisualShelveVm()
                            {
                                isHas = false,
                                shelve_grid = g.ToString(),
                                shelve_layer = l.ToString(),
                            });
                        }
                    }
                }
            }
            #endregion
            Visualization.cefSha.ExecuteScriptAsync($@"GetShelve({Newtonsoft.Json.JsonConvert.SerializeObject(VisualList)});");
        }

  需要注意的是该代码块的最后一行,这是我们用前端方法的方式,Visualization是我们刚才的页面,我们直接调用静态CefSha然后执行它的异步方法,其中是直接执行的Js,它和Wpf自带的WebBrowser还不一样,微软的WebBrowser是高度封装的,而cefsha是高度开源的,这一块不得不赞了。

  前台如何请求后台呢?首先在页面加载的时候配置下bound对象。

<script>
    window.onload = function () {
        loadScrollWidth(2);
        // 新式注入
        CefSharp.BindObjectAsync("bound");
    }
</script>

随后我们就可以通过bound这个对象来请求后台了

bound.GetobjBySline_Code(Sline_Code);

就以我来说,千万不要拿Jquery和Vue一起用,真的是太糟心了..

<body>
    <div class="container" id="app" style="max-width: 1600px;">
        <div class="row">
            <div class="col-lg-3">
                <div class="card">
                    <h3 class="card-img-top headtext">清单</h3>
                    <div class="card-body">
                        <table class="table table-striped">
                            <thead>
                                <tr>
                                    <th scope="col">分类名称</th>
                                    <th scope="col">数量</th>
                                </tr>
                            </thead>
                            <tbody>
                                <tr v-for="(item,index) in goods_item">
                                    <th scope="row">{{item.goods_Name}}</th>
                                    <td>{{item.num}}</td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
            </div>
            <div class="col-lg-9" style="overflow: scroll;">
                <div class="row line_div">
                    <div class="row" style="font-size: 20px;background-color: #CCC;width: 100%;">
                        <ul class="nav nav-pills nav-fill" id="nav_list">
                            <li class="nav-item" v-for="(item,index) in line_item">
                                <!-- 如果 index 1-->
                                <a class="nav-link active" key="item.Sline_code"  @click="toggle(index,item)" v-if="index==0">{{item.Sline_name}}</a>
                                <!-- index 2 n -->
                                <a class="nav-link" key="item.Sline_code"  @click="toggle(index,item)" v-if="index!=0">{{item.Sline_name}}</a>
                            </li>
                        </ul>
                    </div>
                    <div class="row" style="margin-left: 0;" id="VisualBody">
                        <div class="colums" v-for="item in reversedMessage">
                            <div class="row">
                                <img src="tx_3.png">
                                <div class="table_div">
                                    <table class="custormTable" style="margin-top: 40px;" :id="item.code">
                                    </table>
                                </div>
                            </div>
                            <div class="row"
                                 style="background-image: url(‘tx_2.png‘);width: 556px;height:464px;background-repeat: repeat-y;">
                            </div>
                            <div class="row">
                                <img src="tx_1.png">
                                <div class="hj_center">
                                    <h3>{{item.name}}</h3>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</body>
<script>
    window.onload = function () {
        loadScrollWidth(2);
        // 新式注入
        CefSharp.BindObjectAsync("bound");
    }
</script>
<script>
    function loadScrollWidth(num) {
        var tags = document.getElementsByClassName(‘line_div‘)[0];
        tags.style.width = num * 590 + ‘px‘;
    }
    function changedom(listdata,shelvedata) {
        var num = 1;
        $(".custormTable").html("");
        shelvedata.shift();

        for (var i = 0; i < shelvedata.length; i++) {
            var shelve_code = shelvedata[i].shelve_code;
            //不管如何都是循环4X4
            for (var y = 0; y < 4; y++) {
                var goodshtml = ‘<tbody><tr class="store_goodsName">‘;
                var numhtml = ‘<tr class="store_goodsId">‘
                numhtml += "<td>" + num + "</td>";
                numhtml += "<td>" + (num + 1) + "</td>";
                numhtml += "<td>" + (num + 2) + "</td>";
                numhtml += "<td>" + (num + 3) + "</td>";
                numhtml = numhtml + ‘</tr>‘;
                for (var g = 0; g < 4; g++) {
                    var obj = listdata.find(item => item.shelve_layer == y && item.shelve_grid == g && item.shelve_code == shelve_code);
                    if (obj != null) {
                        if (obj.isHas == true) {
                            goodshtml = goodshtml + "<td>" + obj.goods_name + "</td>";
                        }
                    } else {
                        goodshtml = goodshtml + "<td></td>";
                    }
                }
                goodshtml = goodshtml + ‘</tr>‘ + numhtml + ‘</tbody>‘;
                var my_element = $("#" + shelve_code);
                $("#" + shelve_code).append(goodshtml);
                num = num + 4;
            }
        }
    }

</script>
</html>
<script>
    var app = new Vue({
        el: "#app",
        data: {
            m: "hello",
            line_item: [],//列
            goods_item: [],//商品列表+num
            shelve_list: [],//货架列表
            Listdata: [],//商品列表

        },mounted() {
            //全局钩子引用
            window.getalert = this.getalert;
            window.getgoods = this.getgoods;
            window.GetShelve = this.GetShelve;
            window.DBTwo = this.DBTwo;
        },methods: {
            getalert: function (list) {
                this.line_item = typeof list == ‘string‘ ? JSON.parse(list) : list;
            },toggle:function(index,item){
                $(".nav-item a").each(function () {
                    $(this).removeClass("active");
                });
                $(".nav-item a").eq(index).addClass(‘active‘);
                //item 对象 Sline_Code 【字段】
                var Sline_Code = item.Sline_code;
                //调用完之后C#会找我们的一个方法然后将参数带过来
                bound.GetShelveDetail(Sline_Code);
                //请求后台,让后台直接调用一个方法去加载列表。
                bound.GetobjBySline_Code(Sline_Code);
                this.Wecas(index, item);
            },Wecas: function (index, item) {
                $(".nav-item a").each(function () {
                    $(this).removeClass("active");
                });
                $(".nav-item a").eq(index).addClass(‘active‘);
                //item 对象 Sline_Code 【字段】
                var Sline_Code = item.Sline_code;
                //调用完之后C#会找我们的一个方法然后将参数带过来
                bound.GetShelveDetail(Sline_Code);
                //请求后台,让后台直接调用一个方法去加载列表。
                bound.GetobjBySline_Code(Sline_Code);
            },getgoods: function (goods_list) {
                //该方法是返回货架有的物品
                this.goods_item = typeof goods_list == ‘string‘ ? JSON.parse(goods_list) : goods_list;
            }, GetShelve: function (list) {
                this.Listdata = list;
                let obj = {};
                list = list.reduce((cur, next) => {
                    obj[next.shelve_code] ? "" : obj[next.shelve_code] = true && cur.push(next);
                    return cur;
                }, []);
                this.shelve_list = typeof list == ‘string‘ ? JSON.parse(list) : list;
                changedom(this.Listdata, this.shelve_list);
            }
        }, computed: {
            //所有的货架列出来
            reversedMessage: function () {
                var array = [];
                for(var i=0;i<this.shelve_list.length;i++){
                    //判断是否name是不是有
                    if (this.shelve_list[i].shelve_name != null) {
                        var obj = {
                            name: this.shelve_list[i].shelve_name,
                            code : this.shelve_list[i].shelve_code
                        }
                        array.push(obj);
                    }
                }
                if (array.length < 2) {
                    loadScrollWidth(2);

                } else {
                    loadScrollWidth(array.length);
                }
                return array;
            }
        }
    });
</script>

  前后端交互最好是前端请求后端,然后让后端执行前端的Js带上参数。

需要注意的cefsharp初次调用js的是 cefSha.ExecuteScriptAsyncWhenPageLoaded($"getalert({str});");  我也是醉

  还有就是在开发中一定想要F12 看看代码运行状况如何或者要调试。

 class CEFKeyBoardHander : IKeyboardHandler
    {
        public bool OnKeyEvent(IWebBrowser browserControl, IBrowser browser, KeyType type, int windowsKeyCode, int nativeKeyCode, CefEventFlags modifiers, bool isSystemKey)
        {
            if (type == KeyType.KeyUp && Enum.IsDefined(typeof(Keys), windowsKeyCode))
            {
                var key = (Keys)windowsKeyCode;
                switch (key)
                {
                    case Keys.F12:
                        browser.ShowDevTools();
                        break;
                }
            }
            return false;
        }

        public bool OnPreKeyEvent(IWebBrowser browserControl, IBrowser browser, KeyType type, int windowsKeyCode, int nativeKeyCode, CefEventFlags modifiers, bool isSystemKey, ref bool isKeyboardShortcut)
        {
            return false;
        }
    }

ok就这样·~效果图

原文地址:https://www.cnblogs.com/lonelyxmas/p/11392127.html

时间: 2024-10-11 07:41:40

使用CefSharp在.NET中嵌入Google kernel的相关文章

在VC/MFC中嵌入Google地图——图文并茂

最近需要实验室需要将在无人机地面站中嵌入地图,在网上找了很多资料,终于有些眉目了, 首先,做这个需要用到的知识有,MFC控件.MFC类库.JavaScript脚本语言,Google API.Google离线地图:由于google离线地图不怎么会,首先从google在线地图开始. 下面总结一下这几天搞google地图的步骤,有附图,对MFC和JS脚本语言不懂的同学有用. 在线Google 地图步骤: (1).建立基于对话框的MFC工程. 由于我对MFC基本不了解,所以从网上下载了个例子,但是不知道

使用CefSharp在.Net程序中嵌入Chrome浏览器(二)——参数设置

在实现了.Net程序中嵌入Chrome浏览器后,下一步的个性化操作就是加入一些设置了,在前面的文章中,我们可以看到在使用Chrome控件前,有如下一个操作: ????var setting = new CefSharp.CefSettings();????CefSharp.Cef.Initialize(setting, true, false); 这个setting变量就是用来存放chrome的全局设置的地方,当需要进行设置的时候,只需要对它进行修改即可.例如,我们要修改缓存目录,只需要如下设置

使用CefSharp在.Net程序中嵌入Chrome浏览器(一)——简介

有的时候,我们需要在程序中嵌入Web浏览器,其实.Net Framework中本身就提供了WebBrowser控件,本身这个是最简单易用的方案,但不知道是什么原因,这个控件在浏览网页的时候有些莫名的卡顿,有的时候甚至能达到好几秒,严重影响体验. 这个时候,我们可以考虑使用第三方浏览器来代替系统的WebBrowser,常见的方案是使用版本帝Chrome,Chrome本身提供了供第三方程序嵌入的方案Chromium Embedded Framework (CEF),但这个是C++的接口,在.Net程

使用CefSharp在.Net程序中嵌入Chrome浏览器(八)——Cookie

原文:使用CefSharp在.Net程序中嵌入Chrome浏览器(八)--Cookie CEF中的Cookie是通过CookieManager来管理的,可以用它来设置发送的Cookie. 发送Cookie 发送Cookie的一个基本示例如下: var cookieManager = _chrome.GetCookieManager();cookieManager.SetCookie("http://localhost:5000/test", new Cookie(){    Name 

使用CefSharp在.Net程序中嵌入Chrome浏览器(九)——性能问题

原文:使用CefSharp在.Net程序中嵌入Chrome浏览器(九)--性能问题 在使用CEF的过程中,我发现了一个现象:WPF版的CEF比Chrome性能要差:一些有动画的地方会掉帧(例如,CSS动画,全屏图片拖动等),视频播放的效果也没有Chrome流畅. 查了一下相关资料,发现CEFSharp.WPF不是直接渲染在控件上的,它的大概流程如下: CEFSharp.WPF的ChromiumWebBrowser控件本质上是一个图片 而是通过离屏渲染的方式渲染在缓冲区里, 绘制完成后,然后将缓冲

使用CefSharp在.Net程序中嵌入Chrome浏览器(十)——独立文件夹部署

原文:使用CefSharp在.Net程序中嵌入Chrome浏览器(十)--独立文件夹部署 CefSharp本身携带了一大堆文件,这些文件默认直接释放在exe文件底下,这种方式本身没有什么问题,但多了一大堆文件后不是很好看.本文这里就介绍一个方法,使得可以将CEF相关的文件部署到独立的文件夹. 在开始改造之前,还是得另外新建一个工程安装一次CEFSharp,这样才能获取到相关资源文件.然后从这些资源文件中分离出来. 首先把CEF进程相关的文件拷贝到一个独立的文件夹: 然后我们的程序中只需要引用CE

如何用web api在网页中嵌入二维码?

如何用web api在网页中嵌入二维码? 随着智能手机和平板电脑的日益普及,二维码逐渐成了链接智能终端和传统网站的桥梁.在下文中,笔者将介绍几个实时生成二维码的web api,希望能够简化web design过程中的二维码集成工作. 1. 范例一 <img src="http://qrickit.com/api/qr?d=http://www.taobao.com" > 上述代码产生如下的二维码图片: 该web api还支持下面的这些特性, 说明文字:例如addtext=H

使用cefsharp在winform中嵌套浏览器,解决程序闪退问题,你也可以做一个红芯浏览器^v^

使用cefsharp在winform中嵌套浏览器 简单使用cefsharp在winform中嵌套浏览器 在上一节,我们学习了如何简单地在winform中嵌入chromium浏览器,我在使用这个开发项目时,需要点击一个按钮,弹出嵌入浏览器的窗体,出现一个问题,就是第一次点击按钮可以正常打开浏览器,第二次点击就会出现卡壳,闪退问题.由于对于chromium这个庞大的程序不太了解,上网搜索相关文章解决了该问题: 就是在嵌入浏览器的窗体类中不能用Cef.shutdown();需要在调用的主窗体中才能调用

使用库函数API和C代码中嵌入汇编代码两种方式使用同一个系统调用

使用库函数API和C代码中嵌入汇编代码两种方式使用同一个系统调用 选择调用的进程为 24 i386 getuid sys_getuid1647 i386 getgid sys_getgid16 使用库函数API方式 使用C代码中嵌入汇编代码方式