WebView.NavigationCompleted Événement

Définition

Se produit lorsque webView a terminé le chargement du contenu actuel ou si la navigation a échoué.

// Register
event_token NavigationCompleted(TypedEventHandler<WebView, WebViewNavigationCompletedEventArgs const&> const& handler) const;

// Revoke with event_token
void NavigationCompleted(event_token const* cookie) const;

// Revoke with event_revoker
WebView::NavigationCompleted_revoker NavigationCompleted(auto_revoke_t, TypedEventHandler<WebView, WebViewNavigationCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<WebView,WebViewNavigationCompletedEventArgs> NavigationCompleted;
function onNavigationCompleted(eventArgs) { /* Your code */ }
webView.addEventListener("navigationcompleted", onNavigationCompleted);
webView.removeEventListener("navigationcompleted", onNavigationCompleted);
- or -
webView.onnavigationcompleted = onNavigationCompleted;
Public Custom Event NavigationCompleted As TypedEventHandler(Of WebView, WebViewNavigationCompletedEventArgs) 
<WebView NavigationCompleted="eventhandler"/>

Type d'événement

Remarques

Pour déterminer si la navigation a échoué, vérifiez les propriétés IsSuccess et WebErrorStatus de la classe WebViewNavigationCompletedEventArgs.

Les événements de navigation WebView se produisent dans l’ordre suivant :

Des événements similaires se produisent dans le même ordre pour chaque iframe dans le contenu WebView :

S’applique à

Voir aussi