ICoreWindow.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.
Spécifie l’événement qui se produit lorsqu’une zone de contact tactile se trouve dans une fenêtre inscrite pour le test d’accès tactile.
// Register
event_token TouchHitTesting(TypedEventHandler<CoreWindow, TouchHitTestingEventArgs const&> const& handler) const;
// Revoke with event_token
void TouchHitTesting(event_token const* cookie) const;
// Revoke with event_revoker
ICoreWindow::TouchHitTesting_revoker TouchHitTesting(auto_revoke_t, TypedEventHandler<CoreWindow, TouchHitTestingEventArgs const&> const& handler) const;
event TypedEventHandler<CoreWindow,TouchHitTestingEventArgs> TouchHitTesting;
function onTouchHitTesting(eventArgs) { /* Your code */ }
iCoreWindow.addEventListener("touchhittesting", onTouchHitTesting);
iCoreWindow.removeEventListener("touchhittesting", onTouchHitTesting);
- or -
iCoreWindow.ontouchhittesting = onTouchHitTesting;
Event TouchHitTesting As TypedEventHandler(Of CoreWindow, TouchHitTestingEventArgs)