WebViewControl.FrameDOMContentLoaded É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.
Événement qui est déclenché lorsqu’une trame dans le contrôle a terminé l’analyse de son contenu HTML actuel.
Pour plus d’informations, consultez Windows.Web.UI.IWebViewControl
// Register
event_token FrameDOMContentLoaded(TypedEventHandler<IWebViewControl, WebViewControlDOMContentLoadedEventArgs const&> const& handler) const;
// Revoke with event_token
void FrameDOMContentLoaded(event_token const* cookie) const;
// Revoke with event_revoker
WebViewControl::FrameDOMContentLoaded_revoker FrameDOMContentLoaded(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlDOMContentLoadedEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlDOMContentLoadedEventArgs> FrameDOMContentLoaded;
function onFrameDOMContentLoaded(eventArgs) { /* Your code */ }
webViewControl.addEventListener("framedomcontentloaded", onFrameDOMContentLoaded);
webViewControl.removeEventListener("framedomcontentloaded", onFrameDOMContentLoaded);
- or -
webViewControl.onframedomcontentloaded = onFrameDOMContentLoaded;
Public Custom Event FrameDOMContentLoaded As TypedEventHandler(Of IWebViewControl, WebViewControlDOMContentLoadedEventArgs) Implements FrameDOMContentLoaded