HardwareButtons.CameraPressed Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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)