SystemNavigationManager.BackRequested Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica quando l'utente richiama il pulsante, il movimento o il comando vocale fornito dal sistema per lo spostamento indietro.
// 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)