HardwareButtons.BackPressed Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsque l’utilisateur appuie sur le bouton Précédent du matériel.
// Register
static event_token BackPressed(EventHandler<BackPressedEventArgs> const& handler) const;
// Revoke with event_token
static void BackPressed(event_token const* cookie) const;
// Revoke with event_revoker
static HardwareButtons::BackPressed_revoker BackPressed(auto_revoke_t, EventHandler<BackPressedEventArgs> const& handler) const;
public static event System.EventHandler<BackPressedEventArgs> BackPressed;
function onBackPressed(eventArgs) { /* Your code */ }
Windows.Phone.UI.Input.HardwareButtons.addEventListener("backpressed", onBackPressed);
Windows.Phone.UI.Input.HardwareButtons.removeEventListener("backpressed", onBackPressed);
- or -
Windows.Phone.UI.Input.HardwareButtons.onbackpressed = onBackPressed;
Public Shared Custom Event BackPressed As EventHandler(Of BackPressedEventArgs)