ICoreWindow.PointerReleased 事件
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当按下的鼠标按钮松开,或者从数字化器图面上抬起触摸或笔接触时,在应用 (的边界矩形内或边界矩形外(如果指针被捕获) )时发生。
交互会话在检测到单个联系人时开始,当不再检测到该联系人以及同一会话中的所有后续联系人时结束。
对于交互会话中检测到的每个接触 (触发此事件,鼠标除外,其中仅在) 释放最后一个鼠标按钮时触发此事件。
// Register
event_token PointerReleased(TypedEventHandler<CoreWindow, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerReleased(event_token const* cookie) const;
// Revoke with event_revoker
ICoreWindow::PointerReleased_revoker PointerReleased(auto_revoke_t, TypedEventHandler<CoreWindow, PointerEventArgs const&> const& handler) const;
event TypedEventHandler<CoreWindow,PointerEventArgs> PointerReleased;
function onPointerReleased(eventArgs) { /* Your code */ }
iCoreWindow.addEventListener("pointerreleased", onPointerReleased);
iCoreWindow.removeEventListener("pointerreleased", onPointerReleased);
- or -
iCoreWindow.onpointerreleased = onPointerReleased;
Event PointerReleased As TypedEventHandler(Of CoreWindow, PointerEventArgs)
产品 | 版本 |
---|---|
WinRT | Build 10240, Build 10586, Build 14383, Build 15063, Build 16299, Build 17134, Build 17763, Build 18362, Build 19041, Build 20348, Build 22000, Build 22621, Build 26100 |