HardwareButtons.CameraPressed 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于使用者按下硬體相機按鈕時。
// 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)