다음을 통해 공유


MediaElement.Stretch 속성

정의

Stretch가 대상 사각형을 채우는 방법을 설명하는 MediaElement 값을 가져오거나 설정합니다.

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

속성 값

Stretch

렌더링된 미디어의 늘이기 값입니다. 기본값은 Uniform입니다.

예제

다음 예제에서는 만드는 방법을 보여 줍니다.는 Viewbox 설정의 Stretch 콘텐츠의 모드.


// Create a Viewbox and add it to the Canvas
myViewbox = gcnew Viewbox();
myViewbox->StretchDirection = StretchDirection::Both;
myViewbox->Stretch = Stretch::Fill;
myViewbox->MaxWidth = 400;
myViewbox->MaxHeight = 400;

// Create a Viewbox and add it to the Canvas
myViewbox = new Viewbox();
myViewbox.StretchDirection = StretchDirection.Both;
myViewbox.Stretch = Stretch.Fill;
myViewbox.MaxWidth = 400;
myViewbox.MaxHeight = 400;

' Create a ViewBox and add it to the Canvas
Dim myViewbox As New Viewbox()
myViewbox.StretchDirection = StretchDirection.Both
myViewbox.Stretch = Stretch.Fill
myViewbox.MaxWidth = 400
myViewbox.MaxHeight = 400

설명

다음 그림에서는 서로 다른 Stretch 값입니다.

여러 TileBrush Stretch 설정
다른 그라데이션 확산 메서드

종속성 속성 정보

식별자 필드 StretchProperty
메타 데이터 속성 설정 true AffectsMeasure

적용 대상