Condividi tramite


EdgeGesture.Completed Evento

Definizione

Viene generato per indicare che l'utente ha evocato o ignorato correttamente l'interfaccia utente basata su arco. Ciò si verifica quando l'utente solleva il dito da uno schermo abilitato per il tocco o quando l'utente preme Win+Z sulla tastiera.

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

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

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

Tipo evento

Commenti

Questo evento si verifica in seguito all'input tramite tocco o da tastiera. Nel caso dell'input da tastiera (Win+Z), questo è l'unico evento che viene generato. Nel caso dell'input tocco, si verifica quando l'utente solleva il dito alla fine dello scorrimento rapido ed è preceduto dall'evento Starting .

Quando viene chiamato il gestore per questo evento, un'app può eseguire una delle due operazioni seguenti: visualizzare l'interfaccia utente basata su arco se l'interfaccia utente non è attualmente visualizzata o nascondere l'interfaccia utente, se visualizzata.

Si applica a

Vedi anche