HardwareButtons.CameraHalfPressed 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当用户半中按硬件相机按钮时发生。
// 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)