CoreWindow.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.
Se produit lorsqu’une zone de contact tactile croise le rectangle englobant (ou polygone) d’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
CoreWindow::TouchHitTesting_revoker TouchHitTesting(auto_revoke_t, TypedEventHandler<CoreWindow, TouchHitTestingEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreWindow,TouchHitTestingEventArgs> TouchHitTesting;
function onTouchHitTesting(eventArgs) { /* Your code */ }
coreWindow.addEventListener("touchhittesting", onTouchHitTesting);
coreWindow.removeEventListener("touchhittesting", onTouchHitTesting);
- or -
coreWindow.ontouchhittesting = onTouchHitTesting;
Public Custom Event TouchHitTesting As TypedEventHandler(Of CoreWindow, TouchHitTestingEventArgs) Implements TouchHitTesting