IWebViewControl.FrameNavigationCompleted Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’un frame dans IWebViewControl a terminé de charger son contenu.
// Register
event_token FrameNavigationCompleted(TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
// Revoke with event_token
void FrameNavigationCompleted(event_token const* cookie) const;
// Revoke with event_revoker
IWebViewControl::FrameNavigationCompleted_revoker FrameNavigationCompleted(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationCompletedEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlNavigationCompletedEventArgs> FrameNavigationCompleted;
function onFrameNavigationCompleted(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("framenavigationcompleted", onFrameNavigationCompleted);
iWebViewControl.removeEventListener("framenavigationcompleted", onFrameNavigationCompleted);
- or -
iWebViewControl.onframenavigationcompleted = onFrameNavigationCompleted;
Event FrameNavigationCompleted As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationCompletedEventArgs)
Type d'événement
Remarques
Les événements de navigation WebView se produisent dans l’ordre suivant :
- NavigationStarting
- ContentLoading
- DOMContentLoaded
- NavigationCompleted
Des événements similaires se produisent dans le même ordre pour chaque iframe du contenu WebView :