IWebViewControl.NavigationCompleted 事件

定义

当 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 导航事件按以下顺序发生:

对于 WebView 内容中的每个 iframe,类似事件按相同的顺序发生:

适用于