CoreInkIndependentInputSource.PointerReleasing 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在與InkPresenter物件相關聯的InkCanvas點擊測試或周框範圍內,可能會發生為與PointerPressing事件相關聯的指標隨即解除或釋放。
PointerRe租用不保證與 PointerPressing一起發生,因為 PointerLost 或 PointerExiting 可能會改為發生。 您應該處理所有可以結束 PointerPressing的事件。
PointerRe租用可能未發生的一些原因包括:
- 特定硬體如何處理輸入的差異
- 從不同的指標擷取程式設計指標
- 變更顯示區域關聯性的使用者動作,例如變更解析度或監視設定
- 輸入互動,例如觸控與先前觸控動作相同表面的手寫筆
// Register
event_token PointerReleasing(TypedEventHandler<CoreInkIndependentInputSource, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerReleasing(event_token const* cookie) const;
// Revoke with event_revoker
CoreInkIndependentInputSource::PointerReleasing_revoker PointerReleasing(auto_revoke_t, TypedEventHandler<CoreInkIndependentInputSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreInkIndependentInputSource,PointerEventArgs> PointerReleasing;
function onPointerReleasing(eventArgs) { /* Your code */ }
coreInkIndependentInputSource.addEventListener("pointerreleasing", onPointerReleasing);
coreInkIndependentInputSource.removeEventListener("pointerreleasing", onPointerReleasing);
- or -
coreInkIndependentInputSource.onpointerreleasing = onPointerReleasing;
Public Custom Event PointerReleasing As TypedEventHandler(Of CoreInkIndependentInputSource, PointerEventArgs)