以下代码:
Dim InternetExplorer As New SHDocVw.InternetExplorer
InternetExplorer.Visible = True
InternetExplorer.
Navigate("http://stackoverflow.com/")
AddHandler InternetExplorer.OnQuit,
Sub()
Console.WriteLine("InternetExplorer.OnQuit")
End Sub
当我在Internet Explorer 11下运行代码时
http://stackoverflow.com/
页如果那时我点击Questions
按钮
OnQuit
事件触发和控制台写入InternetExplorer.OnQuit
http://stackoverflow.com/questions
的网页已成功加载如果那时我向后导航并再次点击Questions
按钮OnQuit
事件未触发,但Internet Explorer会丢失所有事件订阅。
OnQuit event fires before the Windows Internet Explorer application quits.
OnQuit
事件?