Condividi tramite


EdgeGesture.Canceled Evento

Definizione

Viene generato quando un utente annulla una visualizzazione o nasconde un'azione per un'interfaccia utente basata su edge.

// Register
event_token Canceled(TypedEventHandler<EdgeGesture, EdgeGestureEventArgs const&> const& handler) const;

// Revoke with event_token
void Canceled(event_token const* cookie) const;

// Revoke with event_revoker
EdgeGesture::Canceled_revoker Canceled(auto_revoke_t, TypedEventHandler<EdgeGesture, EdgeGestureEventArgs const&> const& handler) const;
public event TypedEventHandler<EdgeGesture,EdgeGestureEventArgs> Canceled;
function onCanceled(eventArgs) { /* Your code */ }
edgeGesture.addEventListener("canceled", onCanceled);
edgeGesture.removeEventListener("canceled", onCanceled);
- or -
edgeGesture.oncanceled = onCanceled;
Public Custom Event Canceled As TypedEventHandler(Of EdgeGesture, EdgeGestureEventArgs) 

Tipo evento

Commenti

Questo evento si verifica solo con l'input tocco; l'utente sposta il dito verso la posizione iniziale dell'interazione e il sollevamento oppure continua a trascinare il dito nella parte centrale dello schermo. Questo evento è sempre preceduto da un evento Starting .

L'annullamento dell'azione causa l'avvio dell'interfaccia utente che viene richiamata o ignorata per animare lo stato in cui si trovava prima dell'evento Starting .

Si applica a

Vedi anche