EdgeGesture.Starting Evento

Definizione

Viene generato quando un utente avvia un'azione per evocare o ignorare l'interfaccia utente basata su arco.

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

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

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

Tipo evento

Commenti

Questo evento si verifica solo con un'interazione tramite tocco. Una chiamata da tastiera dell'interfaccia utente basata su arco non include questo evento. L'evento Starting è sempre seguito da un evento Completed o Canceled .

Quando viene chiamato il gestore per questo evento, è possibile chiamare un'app per eseguire una di due operazioni, con la possibilità di annullare l'operazione: 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