IWebViewControl.NavigationCompleted 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当 IWebViewControl 加载完当前内容或导航失败时发生。
// Register
event_token NavigationCompleted(TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
// Revoke with event_token
void NavigationCompleted(event_token const* cookie) const;
// Revoke with event_revoker
IWebViewControl::NavigationCompleted_revoker NavigationCompleted(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlNavigationCompletedEventArgs> NavigationCompleted;
function onNavigationCompleted(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("navigationcompleted", onNavigationCompleted);
iWebViewControl.removeEventListener("navigationcompleted", onNavigationCompleted);
- or -
iWebViewControl.onnavigationcompleted = onNavigationCompleted;
Event NavigationCompleted As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationCompletedEventArgs)
事件类型
注解
WebView 导航事件按以下顺序发生:
- NavigationStarting
- ContentLoading
- DOMContentLoaded
- NavigationCompleted
对于 WebView 内容中的每个 iframe,类似事件按相同的顺序发生:
- FrameNavigationStarting
- FrameContentLoading
- FrameDOMContentLoaded
- FrameNavigationCompleted