我正在尝试使用WebControl打开带代理的网站。 我已经尝试了所有我能找到但没有效果的东西。
我正在创建一个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 :(得分:0)
它可能看起来很简单,但是...什么时候将控件添加到表单中?
this.Controls.Add( browser );