ItemCollectionTransitionProvider.TransitionCompleted Событие

Определение

Происходит при вызове метода ItemCollectionTransitionProgress.Complete , чтобы указать, что переход для определенного UIElement объекта завершен.

// Register
event_token TransitionCompleted(TypedEventHandler<ItemCollectionTransitionProvider, ItemCollectionTransitionCompletedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
ItemCollectionTransitionProvider::TransitionCompleted_revoker TransitionCompleted(auto_revoke_t, TypedEventHandler<ItemCollectionTransitionProvider, ItemCollectionTransitionCompletedEventArgs const&> const& handler) const;
public event TypedEventHandler<ItemCollectionTransitionProvider,ItemCollectionTransitionCompletedEventArgs> TransitionCompleted;
function onTransitionCompleted(eventArgs) { /* Your code */ }
itemCollectionTransitionProvider.addEventListener("transitioncompleted", onTransitionCompleted);
itemCollectionTransitionProvider.removeEventListener("transitioncompleted", onTransitionCompleted);
- or -
itemCollectionTransitionProvider.ontransitioncompleted = onTransitionCompleted;
Public Custom Event TransitionCompleted As TypedEventHandler(Of ItemCollectionTransitionProvider, ItemCollectionTransitionCompletedEventArgs) 

Тип события

Применяется к