CoreComponentInputSource.TouchHitTesting Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Déclenché pour un test d’accès tactile sur un élément XAML hébergé.
// 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)
Type d'événement
TypedEventHandler<IInspectable,TouchHitTestingEventArgs>