CoreIndependentInputSource.PointerReleased 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
發生于放開滑鼠按鍵,或 UWP app 周框內的觸控或手寫筆接觸點隨即解除時。
// Register
event_token PointerReleased(TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerReleased(event_token const* cookie) const;
// Revoke with event_revoker
CoreIndependentInputSource::PointerReleased_revoker PointerReleased(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerReleased;
function onPointerReleased(eventArgs) { /* Your code */ }
coreIndependentInputSource.addEventListener("pointerreleased", onPointerReleased);
coreIndependentInputSource.removeEventListener("pointerreleased", onPointerReleased);
- or -
coreIndependentInputSource.onpointerreleased = onPointerReleased;
Public Custom Event PointerReleased As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerReleased
事件類型
TypedEventHandler<IInspectable,PointerEventArgs>