Timeline Construtores
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Inicializa uma nova instância da Timeline classe.
Sobrecargas
| Name | Descrição |
|---|---|
| Timeline() |
Inicializa uma nova instância da Timeline classe. |
| Timeline(Nullable<TimeSpan>) |
Inicializa uma nova instância da Timeline classe com o especificado BeginTime. |
| Timeline(Nullable<TimeSpan>, Duration) |
Inicializa uma nova instância da Timeline classe com os especificados BeginTime e Duration. |
| Timeline(Nullable<TimeSpan>, Duration, RepeatBehavior) |
Inicializa uma nova instância da Timeline classe com os especificados BeginTime, Duration, e RepeatBehavior. |
Timeline()
Inicializa uma nova instância da Timeline classe.
protected:
Timeline();
protected Timeline();
Protected Sub New ()
Aplica-se a
Timeline(Nullable<TimeSpan>)
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))
Parâmetros
O momento em que isto Timeline deve começar. Consulte a BeginTime propriedade para mais informações.
Ver também
Aplica-se a
Timeline(Nullable<TimeSpan>, 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)
Parâmetros
O momento em que isto Timeline deve começar. Consulte a BeginTime propriedade para mais informações.
- duration
- Duration
O tempo que esta linha temporal dura, sem contar as repetições. Consulte a Duration propriedade para mais informações.
Exemplos
Aplica-se a
Timeline(Nullable<TimeSpan>, Duration, RepeatBehavior)
Inicializa uma nova instância da Timeline classe com os especificados BeginTime, Duration, e 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)
Parâmetros
O momento em que isto Timeline deve começar. Consulte a BeginTime propriedade para mais informações.
- duration
- Duration
O tempo que esta linha temporal dura, sem contar as repetições. Consulte a Duration propriedade para mais informações.
- repeatBehavior
- RepeatBehavior
O comportamento repetitivo desta linha temporal, seja como uma iteração Count ou uma repetição Duration. Consulte a RepeatBehavior propriedade para mais informações.