Freigeben über


WebViewControl.NavigationStarting Ereignis

Definition

Ein Ereignis, das ausgelöst wird, bevor das Steuerelement zu neuen Inhalten navigiert.

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

// Register
event_token NavigationStarting(TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
WebViewControl::NavigationStarting_revoker NavigationStarting(auto_revoke_t, TypedEventHandler<IWebViewControl, WebViewControlNavigationStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<IWebViewControl,WebViewControlNavigationStartingEventArgs> NavigationStarting;
function onNavigationStarting(eventArgs) { /* Your code */ }
webViewControl.addEventListener("navigationstarting", onNavigationStarting);
webViewControl.removeEventListener("navigationstarting", onNavigationStarting);
- or -
webViewControl.onnavigationstarting = onNavigationStarting;
Public Custom Event NavigationStarting As TypedEventHandler(Of IWebViewControl, WebViewControlNavigationStartingEventArgs) Implements NavigationStarting

Ereignistyp

Implementiert

Gilt für: