使用SSL的C#CefSharp WinForms连接(白色屏幕)

时间:2018-04-10 03:39:48

标签: c# cefsharp

我在WPF中的Windows窗体主机内嵌入Winf版本63.0.3的Cefsharp。我试过运行这个简单的例子,并在Windows窗体中使用winforms CefSharp工作正常。 (https://www.google.com) 图片:https://imgur.com/HCKHj8n

但是当我使用其他ssl网址时,却会呈现白屏而不是网站。 (https://portal.aoacloud.com.tw/desk_auth_index.php) 图片:https://imgur.com/vzw728C

bosh deploy

}

1 个答案:

答案 0 :(得分:0)

我在这里找到答案表格 https://github.com/cefsharp/CefSharp/wiki/Trouble-Shooting

using System;
using System.Windows.Forms;
using CefSharp;

namespace CefBlog3
{
  static class Program
  {
[STAThread]
static void Main()
{
  Cef.Initialize(new CefSettings() { CachePath = "Cache" } );

  Application.EnableVisualStyles();
  Application.SetCompatibleTextRenderingDefault(false);
  Application.Run(new Form1());
}
}
}