CoreComponentInputSource.TouchHitTesting Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se genera para una prueba de posicionamiento táctil en un 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>