Compartilhar via


MediaElement.Stretch Propriedade

Definição

Obtém ou define um valor de Stretch que descreve como um MediaElement preenche o retângulo de destino.

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

Valor da propriedade

Stretch

O valor de ampliação para a mídia renderizada. O padrão é Uniform.

Exemplos

O exemplo a seguir mostra como criar um Viewbox e definir o Stretch modo de conteúdo.


// 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

Comentários

A ilustração a seguir demonstra os valores diferentes Stretch .

Diferentes configurações de alongamento de TileBrush
Diferentes métodos de propagação de gradiente

Informações da propriedade de dependência

Campo Identificador StretchProperty
Propriedades de metadados definidas como true AffectsMeasure

Aplica-se a