我们最近在我们的一个项目中将 Cefsharp从43.0.0.0升级到了65.0.0.0。升级闪存不再在浏览器中加载后,它会给出一个错误
“Adobe Flash 播放器已过时”
. 我们在项目中嵌入了特定版本的胡椒粉 25.0.0.171。代码片段如下
settings.CefCommandLineArgs.Remove("enable-system-flash");
string PpapiFlashVersion = "25.0.0.171";
var pepFlashPlayerPath = Path.Combine(AppDomain.CurrentDomain.SetupInformation.ApplicationBase,"pepflashplayer");
settings.CefCommandLineArgs.Add("ppapi-flash-path", pepFlashPlayerPath);
settings.CefCommandLineArgs.Add("ppapi-flash-version", PpapiFlashVersion);
收到错误后,我想我会尝试使用最新版本的辣椒闪光 (31.0.0.108)。但是当我这样做时,我得到另一个错误
“右键单击运行 Adobe Flash 播放器”
右键单击也不起作用。
任何帮助将不胜感激。谢谢