ItemCollectionTransitionProvider.QueueTransition 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.
Prepares a transition animation to be started by a call to StartTransitions.
public:
virtual void QueueTransition(ItemCollectionTransition ^ transition) = QueueTransition;
void QueueTransition(ItemCollectionTransition const& transition);
public void QueueTransition(ItemCollectionTransition transition);
function queueTransition(transition)
Public Sub QueueTransition (transition As ItemCollectionTransition)
Parameters
- transition
- ItemCollectionTransition
The transition to be animated.
Remarks
This method is called on an ItemCollectionTransitionProvider object when a UIElement
for a corresponding data object wants an operation to be animated. It adds a CompositionTarget.Rendering event handler if one does not already exist, which will call StartTransitions to actually set up the transition animations to be run.