Condividi tramite


WebView.FrameContentLoading Evento

Definizione

Si verifica quando un frame in WebView ha avviato il caricamento di nuovo contenuto.

// Register
event_token FrameContentLoading(TypedEventHandler<WebView, WebViewContentLoadingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WebView::FrameContentLoading_revoker FrameContentLoading(auto_revoke_t, TypedEventHandler<WebView, WebViewContentLoadingEventArgs const&> const& handler) const;
public event TypedEventHandler<WebView,WebViewContentLoadingEventArgs> FrameContentLoading;
function onFrameContentLoading(eventArgs) { /* Your code */ }
webView.addEventListener("framecontentloading", onFrameContentLoading);
webView.removeEventListener("framecontentloading", onFrameContentLoading);
- or -
webView.onframecontentloading = onFrameContentLoading;
Public Custom Event FrameContentLoading As TypedEventHandler(Of WebView, WebViewContentLoadingEventArgs) 
<WebView FrameContentLoading="eventhandler"/>

Tipo evento

Commenti

Gli eventi di spostamento di WebView si verificano nell'ordine seguente:

Gli eventi simili si verificano nello stesso ordine per ogni iframe nel contenuto di WebView :

Si applica a