IWebViewControl.FrameContentLoading Ereignis
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Tritt auf, wenn ein Frame in IWebViewControl die Analyse des aktuellen HTML-Inhalts abgeschlossen hat.
// 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)
Ereignistyp
Hinweise
WebView-Navigationsereignisse treten in der folgenden Reihenfolge auf:
- NavigationStarting
- ContentLoading
- DOMContentLoaded
- NavigationVervollständigen
Ähnliche Ereignisse treten in der gleichen Reihenfolge für jeden Iframe im WebView-Inhalt auf:
- FrameNavigationStarting
- FrameContentLoading
- FrameDOMContentLoaded
- FrameNavigationCompleted