HardwareButtons.CameraHalfPressed 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 halfway.
// 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)