CompositionPropertyAnimator.AnimationEnded Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando a animação foi encerrada.
// Register
event_token AnimationEnded(TypedEventHandler<CompositionPropertyAnimator, AnimationEndedEventArgs const&> const& handler) const;
// Revoke with event_token
void AnimationEnded(event_token const* cookie) const;
// Revoke with event_revoker
CompositionPropertyAnimator::AnimationEnded_revoker AnimationEnded(auto_revoke_t, TypedEventHandler<CompositionPropertyAnimator, AnimationEndedEventArgs const&> const& handler) const;
public event TypedEventHandler<CompositionPropertyAnimator,AnimationEndedEventArgs> AnimationEnded;
function onAnimationEnded(eventArgs) { /* Your code */ }
compositionPropertyAnimator.addEventListener("animationended", onAnimationEnded);
compositionPropertyAnimator.removeEventListener("animationended", onAnimationEnded);
- or -
compositionPropertyAnimator.onanimationended = onAnimationEnded;
Public Custom Event AnimationEnded As TypedEventHandler(Of CompositionPropertyAnimator, AnimationEndedEventArgs)
Tipo de evento
Comentários
Importante
Essa API existe apenas no Windows 10, versão 1507 (Build 10240).