Freigeben über


WebViewControl.FrameContentLoading Ereignis

Definition

Ein Ereignis, das ausgelöst wird, wenn ein Frame im Steuerelement den aktuellen HTML-Inhalt analysiert hat.

Weitere Informationen finden Sie unter Windows.Web.UI.IWebViewControl.

// 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
WebViewControl::FrameContentLoading_revoker FrameContentLoading(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlContentLoadingEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlContentLoadingEventArgs> FrameContentLoading;
function onFrameContentLoading(eventArgs) { /* Your code */ }
webViewControl.addEventListener("framecontentloading", onFrameContentLoading);
webViewControl.removeEventListener("framecontentloading", onFrameContentLoading);
- or -
webViewControl.onframecontentloading = onFrameContentLoading;
Public Custom Event FrameContentLoading As TypedEventHandler(Of IWebViewControl, WebViewControlContentLoadingEventArgs) Implements FrameContentLoading

Ereignistyp

Implementiert

Gilt für: