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)