0
我正嘗試使用WebControl以代理方式打開網站。 我試過了我能找到的所有東西,但沒有成功。Awesomium WebControl不能與WebSession配合使用
我正在創建一個WebControl,WebPreferences &一個WebSession,但是當我運行代碼時什麼都不顯示。
string Proxy = "208.83.6.19:3128";
WebControl wc = new WebControl();
Browsers.Controls.Add(wc);
wc.Dock = DockStyle.Fill;
WebSession session = WebCore.CreateWebSession(new WebPreferences() { ProxyConfig = Proxy, SmoothScrolling = true });
wc.WebSession = session;
wc.Source = new Uri("http://checkip.dyndns.com/", UriKind.Absolute);
感謝您所有的幫助,我可以得到!