Timeline 构造函数

定义

初始化 Timeline 类的新实例。

重载

Timeline()

初始化 Timeline 类的新实例。

Timeline(Nullable<TimeSpan>)

使用指定的 Timeline 初始化 BeginTime 类的新实例。

Timeline(Nullable<TimeSpan>, Duration)

使用指定的 TimelineBeginTime 初始化 Duration 类的新实例。

Timeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

使用指定的 TimelineBeginTimeDuration 初始化 RepeatBehavior 类的新实例。

Timeline()

初始化 Timeline 类的新实例。

protected:
 Timeline();
protected Timeline ();
Protected Sub New ()

适用于

Timeline(Nullable<TimeSpan>)

使用指定的 Timeline 初始化 BeginTime 类的新实例。

protected:
 Timeline(Nullable<TimeSpan> beginTime);
protected Timeline (TimeSpan? beginTime);
new System.Windows.Media.Animation.Timeline : Nullable<TimeSpan> -> System.Windows.Media.Animation.Timeline
Protected Sub New (beginTime As Nullable(Of TimeSpan))

参数

beginTime
Nullable<TimeSpan>

Timeline 将要开始的时间。 有关更多信息,请参见 BeginTime 属性。

另请参阅

适用于

Timeline(Nullable<TimeSpan>, Duration)

使用指定的 TimelineBeginTime 初始化 Duration 类的新实例。

protected:
 Timeline(Nullable<TimeSpan> beginTime, System::Windows::Duration duration);
protected Timeline (TimeSpan? beginTime, System.Windows.Duration duration);
new System.Windows.Media.Animation.Timeline : Nullable<TimeSpan> * System.Windows.Duration -> System.Windows.Media.Animation.Timeline
Protected Sub New (beginTime As Nullable(Of TimeSpan), duration As Duration)

参数

beginTime
Nullable<TimeSpan>

Timeline 将要开始的时间。 有关更多信息,请参见 BeginTime 属性。

duration
Duration

此时间线播放的时间长度,而不是计数重复。 有关更多信息,请参见 Duration 属性。

示例

BeginTime

Duration

适用于

Timeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

使用指定的 TimelineBeginTimeDuration 初始化 RepeatBehavior 类的新实例。

protected:
 Timeline(Nullable<TimeSpan> beginTime, System::Windows::Duration duration, System::Windows::Media::Animation::RepeatBehavior repeatBehavior);
protected Timeline (TimeSpan? beginTime, System.Windows.Duration duration, System.Windows.Media.Animation.RepeatBehavior repeatBehavior);
new System.Windows.Media.Animation.Timeline : Nullable<TimeSpan> * System.Windows.Duration * System.Windows.Media.Animation.RepeatBehavior -> System.Windows.Media.Animation.Timeline
Protected Sub New (beginTime As Nullable(Of TimeSpan), duration As Duration, repeatBehavior As RepeatBehavior)

参数

beginTime
Nullable<TimeSpan>

Timeline 将要开始的时间。 有关更多信息,请参见 BeginTime 属性。

duration
Duration

此时间线播放的时间长度,而不是计数重复。 有关更多信息,请参见 Duration 属性。

repeatBehavior
RepeatBehavior

此时间线的重复行为,可以作为迭代 Count,也可以作为重复 Duration。 有关更多信息,请参见 RepeatBehavior 属性。

示例

BeginTime

Duration

适用于