2016-08-19 120 views
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); 

感謝您所有的幫助,我可以得到!

回答

0

這看起來很基本,但是......您何時將控件添加到您的窗體?

this.Controls.Add(browser); 
相關問題