CoreComponentInputSource.TouchHitTesting Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Gerado para um teste de toque em um elemento XAML hospedado.
// Register
event_token TouchHitTesting(TypedEventHandler<IInspectable, TouchHitTestingEventArgs const&> const& handler) const;
// Revoke with event_token
void TouchHitTesting(event_token const* cookie) const;
// Revoke with event_revoker
CoreComponentInputSource::TouchHitTesting_revoker TouchHitTesting(auto_revoke_t, TypedEventHandler<IInspectable, TouchHitTestingEventArgs const&> const& handler) const;
public event TypedEventHandler<object,TouchHitTestingEventArgs> TouchHitTesting;
function onTouchHitTesting(eventArgs) { /* Your code */ }
coreComponentInputSource.addEventListener("touchhittesting", onTouchHitTesting);
coreComponentInputSource.removeEventListener("touchhittesting", onTouchHitTesting);
- or -
coreComponentInputSource.ontouchhittesting = onTouchHitTesting;
Public Custom Event TouchHitTesting As TypedEventHandler(Of Object, TouchHitTestingEventArgs)
Tipo de evento
TypedEventHandler<IInspectable,TouchHitTestingEventArgs>