CoreComponentInputSource.PointerReleased Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raised when the pointer is released (such as when a mouse button click or screen press is released) for the active hosted XAML element.
// 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
CoreComponentInputSource::PointerReleased_revoker PointerReleased(auto_revoke_t, TypedEventHandler<IInspectable, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<object,PointerEventArgs> PointerReleased;
function onPointerReleased(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("pointerreleased", onPointerReleased);
coreComponentInputSource.removeEventListener("pointerreleased", onPointerReleased);
- or -
coreComponentInputSource.onpointerreleased = onPointerReleased;
Public Custom Event PointerReleased As TypedEventHandler(Of Object, PointerEventArgs) Implements PointerReleased
Event Type
TypedEventHandler<IInspectable,PointerEventArgs>