HardwareButtons.CameraPressed É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 de la caméra matérielle.
// Register
static event_token CameraPressed(EventHandler<CameraEventArgs> const& handler) const;
// Revoke with event_token
static void CameraPressed(event_token const* cookie) const;
// Revoke with event_revoker
static HardwareButtons::CameraPressed_revoker CameraPressed(auto_revoke_t, EventHandler<CameraEventArgs> const& handler) const;
public static event System.EventHandler<CameraEventArgs> CameraPressed;
function onCameraPressed(eventArgs) { /* Your code */ }
Windows.Phone.UI.Input.HardwareButtons.addEventListener("camerapressed", onCameraPressed);
Windows.Phone.UI.Input.HardwareButtons.removeEventListener("camerapressed", onCameraPressed);
- or -
Windows.Phone.UI.Input.HardwareButtons.oncamerapressed = onCameraPressed;
Public Shared Custom Event CameraPressed As EventHandler(Of CameraEventArgs)