ItemCollectionTransitionProvider.ShouldAnimate 方法

定义

检索一个值,该值指示是否应对此过渡进行动画处理。

public:
 virtual bool ShouldAnimate(ItemCollectionTransition ^ transition) = ShouldAnimate;
bool ShouldAnimate(ItemCollectionTransition const& transition);
public bool ShouldAnimate(ItemCollectionTransition transition);
function shouldAnimate(transition)
Public Function ShouldAnimate (transition As ItemCollectionTransition) As Boolean

参数

transition
ItemCollectionTransition

可能进行动画处理的过渡。

返回

Boolean

bool

true 如果应对过渡进行动画处理,则为 ;否则为 false

注解

当集合中 的数据对象的状态UIElement已发生更改,可能导致其成为动画时,将在 ItemCollectionTransitionProvider 对象上调用此方法。 它将其实现委托给 ShouldAnimateCore 方法,应在派生类中重写该方法。

适用于