Поделиться через


CoreInkIndependentInputSource.PointerExiting Событие

Определение

Происходит при обнаружении указателя, покидающего область проверки попадания или ограничивающей области InkCanvas , связанной с объектом InkPresenter .

// Register
event_token PointerExiting(TypedEventHandler<CoreInkIndependentInputSource, PointerEventArgs const&> const& handler) const;

// Revoke with event_token
void PointerExiting(event_token const* cookie) const;

// Revoke with event_revoker
CoreInkIndependentInputSource::PointerExiting_revoker PointerExiting(auto_revoke_t, TypedEventHandler<CoreInkIndependentInputSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreInkIndependentInputSource,PointerEventArgs> PointerExiting;
function onPointerExiting(eventArgs) { /* Your code */ }
coreInkIndependentInputSource.addEventListener("pointerexiting", onPointerExiting);
coreInkIndependentInputSource.removeEventListener("pointerexiting", onPointerExiting);
- or -
coreInkIndependentInputSource.onpointerexiting = onPointerExiting;
Public Custom Event PointerExiting As TypedEventHandler(Of CoreInkIndependentInputSource, PointerEventArgs) 

Тип события

Применяется к

См. также раздел