MediaTimeline 생성자

정의

MediaTimeline 클래스의 새 인스턴스를 초기화합니다.

오버로드

MediaTimeline()

MediaTimeline 클래스의 새 인스턴스를 초기화합니다.

MediaTimeline(Nullable<TimeSpan>)

지정된 시간에 시작하는 MediaTimeline의 새 인스턴스를 초기화합니다.

MediaTimeline(Uri)

제공된 Uri를 미디어 원본으로 사용하여 클래스의 MediaTimeline 새 인스턴스를 초기화합니다.

MediaTimeline(Nullable<TimeSpan>, Duration)

지정된 시간에 시작해서 지정된 지속 시간 동안 지속되는 MediaTimeline의 새 인스턴스를 초기화합니다.

MediaTimeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

지정된 시간에 시작해서 지정된 시간 동안 지정된 반복 동작을 하는 MediaTimeline 클래스의 새 인스턴스를 초기화합니다.

MediaTimeline()

MediaTimeline 클래스의 새 인스턴스를 초기화합니다.

public:
 MediaTimeline();
public MediaTimeline ();
Public Sub New ()

적용 대상

MediaTimeline(Nullable<TimeSpan>)

지정된 시간에 시작하는 MediaTimeline의 새 인스턴스를 초기화합니다.

public:
 MediaTimeline(Nullable<TimeSpan> beginTime);
public MediaTimeline (TimeSpan? beginTime);
new System.Windows.Media.MediaTimeline : Nullable<TimeSpan> -> System.Windows.Media.MediaTimeline
Public Sub New (beginTime As Nullable(Of TimeSpan))

매개 변수

beginTime
Nullable<TimeSpan>

Timeline을 시작할 시간입니다.

적용 대상

MediaTimeline(Uri)

제공된 Uri를 미디어 원본으로 사용하여 클래스의 MediaTimeline 새 인스턴스를 초기화합니다.

public:
 MediaTimeline(Uri ^ source);
public MediaTimeline (Uri source);
new System.Windows.Media.MediaTimeline : Uri -> System.Windows.Media.MediaTimeline
Public Sub New (source As Uri)

매개 변수

source
Uri

Timeline의 미디어 소스입니다.

적용 대상

MediaTimeline(Nullable<TimeSpan>, Duration)

지정된 시간에 시작해서 지정된 지속 시간 동안 지속되는 MediaTimeline의 새 인스턴스를 초기화합니다.

public:
 MediaTimeline(Nullable<TimeSpan> beginTime, System::Windows::Duration duration);
public MediaTimeline (TimeSpan? beginTime, System.Windows.Duration duration);
new System.Windows.Media.MediaTimeline : Nullable<TimeSpan> * System.Windows.Duration -> System.Windows.Media.MediaTimeline
Public Sub New (beginTime As Nullable(Of TimeSpan), duration As Duration)

매개 변수

beginTime
Nullable<TimeSpan>

미디어 재생을 시작할 시간입니다.

duration
Duration

미디어가 재생되는 시간입니다.

적용 대상

MediaTimeline(Nullable<TimeSpan>, Duration, RepeatBehavior)

지정된 시간에 시작해서 지정된 시간 동안 지정된 반복 동작을 하는 MediaTimeline 클래스의 새 인스턴스를 초기화합니다.

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

매개 변수

beginTime
Nullable<TimeSpan>

미디어 재생을 시작할 시간입니다.

duration
Duration

미디어가 재생되는 시간입니다.

repeatBehavior
RepeatBehavior

재생 지속 시간에 도달했을 때 사용할 반복 동작입니다.

적용 대상