SystemNavigationManager.BackRequested Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando el usuario invoca el botón, el gesto o el comando de voz proporcionados por el sistema para la navegación atrás.
// Register
event_token BackRequested(EventHandler<BackRequestedEventArgs> const& handler) const;
// Revoke with event_token
void BackRequested(event_token const* cookie) const;
// Revoke with event_revoker
SystemNavigationManager::BackRequested_revoker BackRequested(auto_revoke_t, EventHandler<BackRequestedEventArgs> const& handler) const;
public event System.EventHandler<BackRequestedEventArgs> BackRequested;
function onBackRequested(eventArgs) { /* Your code */ }
systemNavigationManager.addEventListener("backrequested", onBackRequested);
systemNavigationManager.removeEventListener("backrequested", onBackRequested);
- or -
systemNavigationManager.onbackrequested = onBackRequested;
Public Custom Event BackRequested As EventHandler(Of BackRequestedEventArgs)