HardwareButtons.CameraHalfPressed É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 à mi-chemin.
// Register
static event_token CameraHalfPressed(EventHandler<CameraEventArgs> const& handler) const;
// Revoke with event_token
static void CameraHalfPressed(event_token const* cookie) const;
// Revoke with event_revoker
static HardwareButtons::CameraHalfPressed_revoker CameraHalfPressed(auto_revoke_t, EventHandler<CameraEventArgs> const& handler) const;
public static event System.EventHandler<CameraEventArgs> CameraHalfPressed;
function onCameraHalfPressed(eventArgs) { /* Your code */ }
Windows.Phone.UI.Input.HardwareButtons.addEventListener("camerahalfpressed", onCameraHalfPressed);
Windows.Phone.UI.Input.HardwareButtons.removeEventListener("camerahalfpressed", onCameraHalfPressed);
- or -
Windows.Phone.UI.Input.HardwareButtons.oncamerahalfpressed = onCameraHalfPressed;
Public Shared Custom Event CameraHalfPressed As EventHandler(Of CameraEventArgs)