在程序中怎么调用chrome浏览器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在程序中怎么调用chrome浏览器相关的知识,希望对你有一定的参考价值。

在程序中可以使用 Chrome 本身提供的嵌入方案 Chromium Embedded Framework (CEF),本身是C++的接口。

示例:在.Net程序中,使用CefSharp来调用Chrome浏览器

    private void MainWindow_Loaded(object sender, RoutedEventArgs e)
    
        var setting = new CefSharp.CefSettings();
        CefSharp.Cef.Initialize(setting, true, false);

        var webView = new CefSharp.Wpf.ChromiumWebBrowser();
        this.Content = webView;

        webView.Address = "http://www.cnblogs.com/TianFang/";
    

参考技术A 看装哪盘文件知道用360软件管家面软件卸载选定连连看(要按卸载哦)打文件安装目录

以上是关于在程序中怎么调用chrome浏览器的主要内容,如果未能解决你的问题,请参考以下文章

怎么调用selenium打开chrome浏览器?

chrome浏览器怎么导出已安装的扩展程序为crx文件

chrome浏览器中选项设置中有一个“关闭Google Chrome 浏览器后继续运行后台应用程序”,这个最好怎么设置?

chrome怎么打开postman

google chrome 浏览器怎么去广告插件

Chrome 扩展程序在调用 launchWebAuthFlow API 时使 Microsoft Edge 浏览器崩溃