我目前在我的应用程序中有一个覆盖网页浏览器的图片框我希望图片框在网站完全加载时消失,这可能吗?或者我是否只需要在我的图片框中添加一个计时器,其中包含网站加载的平均时间,是否有任何建议?
答案 0 :(得分:2)
不需要计时器。
设置webbrowser事件:
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
PictureBox1.Visible = False
End Sub