Partager via


Viewbox.Stretch Propriété

Définition

Obtient ou définit le mode StretchViewbox, qui détermine comment le contenu s’adapte à l’espace disponible.

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

Valeur de propriété

Stretch

Stretch qui détermine comment le contenu s’ajuste à l’espace disponible. La valeur par défaut est Uniform.

Exemples

L’exemple suivant montre comment créer une instance de, puis définir la propriété à l’aide Stretch du Viewbox code.


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

Remarques

Informations sur les propriétés de dépendance

Champ d’identificateur StretchProperty
Propriétés de métadonnées définies sur true AffectsMeasure

S’applique à

Voir aussi