IWebViewControl.FrameContentLoading Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando un marco de IWebViewControl ha terminado de analizar su contenido HTML actual.
// Register
event_token FrameContentLoading(TypedEventHandler<IWebViewControl, WebViewControlContentLoadingEventArgs const&> const& handler) const;
// Revoke with event_token
void FrameContentLoading(event_token const* cookie) const;
// Revoke with event_revoker
IWebViewControl::FrameContentLoading_revoker FrameContentLoading(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlContentLoadingEventArgs const&> const& handler) const;
event TypedEventHandler<IWebViewControl,WebViewControlContentLoadingEventArgs> FrameContentLoading;
function onFrameContentLoading(eventArgs) { /* Your code */ }
iWebViewControl.addEventListener("framecontentloading", onFrameContentLoading);
iWebViewControl.removeEventListener("framecontentloading", onFrameContentLoading);
- or -
iWebViewControl.onframecontentloading = onFrameContentLoading;
Event FrameContentLoading As TypedEventHandler(Of IWebViewControl, WebViewControlContentLoadingEventArgs)
Tipo de evento
Comentarios
Los eventos de navegación de WebView se producen en el orden siguiente:
- NavigationStarting
- ContentLoading
- DOMContentLoaded
- NavigationCompleted
Los eventos similares se producen en el mismo orden para cada iframe en el contenido de WebView:
- FrameNavigationStarting
- FrameContentLoading
- FrameDOMContentLoaded
- FrameNavigationCompleted