BeginStoryboard.HandoffBehavior 属性

定义

获取或设置正确的提交行为以启动此情节提要中的动画时钟。

public:
 property System::Windows::Media::Animation::HandoffBehavior HandoffBehavior { System::Windows::Media::Animation::HandoffBehavior get(); void set(System::Windows::Media::Animation::HandoffBehavior value); };
public System.Windows.Media.Animation.HandoffBehavior HandoffBehavior { get; set; }
member this.HandoffBehavior : System.Windows.Media.Animation.HandoffBehavior with get, set
Public Property HandoffBehavior As HandoffBehavior

属性值

HandoffBehavior 枚举值之一。 默认值是 SnapshotAndReplace

注解

使用 Compose HandoffBehavior

使用 HandoffBehavior.Compose将 、 AnimationTimelineAnimationClock 应用于Storyboard属性时,以前与该属性关联的任何Clock对象将继续消耗系统资源;计时系统不会自动删除这些时钟。

为避免在使用 Compose 应用大量时钟时出现性能问题,应该在完成后从经动画处理过的属性中删除组合时钟。 可通过多种方式删除时钟:

此动画问题主要出现在生存期较长的对象上。 对对象进行垃圾回收时,其时钟也会断开连接并回收垃圾。

有关时钟对象的详细信息,请参阅动画和计时系统概述

适用于