ItemCollectionTransitionProvider.StartTransitions Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.