HardwareButtons.CameraPressed Event

Definition

Occurs when the user presses the hardware camera button.

// 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) 

Event Type

Applies to

See also