//添加命令行参数--disable-web-security
//仅可初始化一次(在程序启动时初始化)
 var settings = new CefSettings();

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



            settings.MultiThreadedMessageLoop = true;
            settings.CefCommandLineArgs.Add("--disable-web-security", "");


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

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-16
  • 2022-12-23
  • 2021-12-26
猜你喜欢
  • 2021-12-26
  • 2022-12-23
  • 2022-12-23
  • 2021-07-11
  • 2021-09-23
  • 2021-12-05
相关资源
相似解决方案