ConnectedAnimation.Completed Evento
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Si verifica al termine dell'animazione.
// Register
event_token Completed(TypedEventHandler<ConnectedAnimation, IInspectable const&> const& handler) const;
// Revoke with event_token
void Completed(event_token const* cookie) const;
// Revoke with event_revoker
ConnectedAnimation::Completed_revoker Completed(auto_revoke_t, TypedEventHandler<ConnectedAnimation, IInspectable const&> const& handler) const;
public event TypedEventHandler<ConnectedAnimation,object> Completed;
function onCompleted(eventArgs) { /* Your code */ }
connectedAnimation.addEventListener("completed", onCompleted);
connectedAnimation.removeEventListener("completed", onCompleted);
- or -
connectedAnimation.oncompleted = onCompleted;
Public Custom Event Completed As TypedEventHandler(Of ConnectedAnimation, Object)
Tipo evento
TypedEventHandler<ConnectedAnimation,IInspectable>