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)