Freigeben über


IWebViewControl.FrameNavigationCompleted Ereignis

Definition

Tritt auf, wenn ein Frame in IWebViewControl seinen Inhalt geladen hat.

// 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) 

Ereignistyp

Hinweise

WebView-Navigationsereignisse treten in der folgenden Reihenfolge auf:

Ähnliche Ereignisse treten in der gleichen Reihenfolge für jeden iFrame im WebView-Inhalt auf:

Gilt für: