CoreInkIndependentInputSource.PointerReleasing 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当与 PointerPressing 事件关联的指针在与 InkPresenter 对象关联的 InkCanvas 的命中测试或边界范围内时,可能会发生。
PointerReleasing 不保证与 PointerPressing 协同发生,因为 PointerLost 或 PointerExiting 可能会改为发生。 应处理可以结束 PointerPressing 的所有事件。
PointerReleasing 可能不会发生的原因包括:
- 特定硬件处理输入方式的差异
- 从其他指针捕获编程指针
- 更改显示区域关系的用户操作,例如更改分辨率或监视器设置
- 输入交互,例如触笔,触摸上一个触摸操作的同一表面
// 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)