Share via


ItemCollectionTransitionProvider.StartTransitions Method

Definition

Starts the queued transition animations.

protected:
 virtual void StartTransitions(IVector<ItemCollectionTransition ^> ^ transitions) = StartTransitions;
void StartTransitions(IVector<ItemCollectionTransition> const& transitions);
protected virtual void StartTransitions(IList<ItemCollectionTransition> transitions);
function startTransitions(transitions)
Protected Overridable Sub StartTransitions (transitions As IList(Of ItemCollectionTransition))

Parameters

transitions

IVector<ItemCollectionTransition>

IList<ItemCollectionTransition>

The collection of transitions for which to start animations.

Remarks

This method is called by the CompositionTarget.Rendering event handler set up by the QueueTransition method. It sets up the animations for all of the transitions on which QueueTransition was called. You should override this method in a derived class. The default implementation does nothing if not overridden.

Applies to