当我在我的WebBrowser对象中放置Instagram的地址时,在加载程序时,它只显示一个空白页面,没有别的,哪里有问题?! 首先我认为它应该是因为WebBrowser使用IE,但IE(ver.11)成功加载Instagram。
更新 这是我使用的代码:
this.webB.Location = new System.Drawing.Point(93, 17);
this.webB.MinimumSize = new System.Drawing.Size(20, 20);
this.webB.Name = "webB";
this.webB.Size = new System.Drawing.Size(642, 324);
this.webB.TabIndex = 1;
this.webB.Url = new System.Uri("https://www.instagram.com/", System.UriKind.Absolute);
this.webB.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webB_DocumentCompleted);
this.webB.ScriptErrorsSuppressed = true;