【发布时间】:2013-09-09 17:03:01
【问题描述】:
只有在 vb.net 网络浏览器中完全加载特定 URL 时,我才能在子例程中运行一些东西。
例如
sub button click
webbrowsernavigate to whatever
(This is what I need)if document has loaded statement
do stuff
end sub
谢谢
【问题讨论】:
-
vb.net 请。谢谢
-
如果目标是 .NET 4.5,您可以使用
async/await。我没有准备好 VB.NET 示例,但 here's how 可以在 C# 中完成。
标签: .net vb.net webbrowser-control