Frame.Navigating Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando uma nova navegação é solicitada.
public:
virtual event NavigatingCancelEventHandler ^ Navigating;
// Register
event_token Navigating(NavigatingCancelEventHandler const& handler) const;
// Revoke with event_token
void Navigating(event_token const* cookie) const;
// Revoke with event_revoker
Frame::Navigating_revoker Navigating(auto_revoke_t, NavigatingCancelEventHandler const& handler) const;
public event NavigatingCancelEventHandler Navigating;
function onNavigating(eventArgs) { /* Your code */ }
frame.addEventListener("navigating", onNavigating);
frame.removeEventListener("navigating", onNavigating);
- or -
frame.onnavigating = onNavigating;
Public Custom Event Navigating As NavigatingCancelEventHandler
<Frame Navigating="eventhandler" />