在CEFSharp Winform中启用NPAPI不​​起作用

时间:2019-07-18 12:18:16

标签: c# winforms cefsharp npapi

我正在尝试通过NPAPI和Pepperflashplayer DLL在CEFSharp中添加Flash。它不会工作。我正在使用CEFSharp 73,.NET 4.5.2,并且DLL是25.0.0.171版本。因为在2020年,Flashplayer将不再在网络浏览器中支持。

实际上,我尝试使用“ Enable-System-Flash”,这将产生以下错误:“已经添加了具有相同密钥的项目。”这是我现在得到的代码:

        public void InitFlash()
        {
            CefSettings settings = new CefSettings();

            settings.CefCommandLineArgs.Add("enable-npapi", "1");
            settings.CefCommandLineArgs.Add("ppapi-flash-path", @"C:\path to the .dll)");
            settings.CefCommandLineArgs.Add("ppapi-flash-version", "25.0.0.171");
        }

我希望它将自动启用Flash Player ...

0 个答案:

没有答案