Viewbox.StretchDirection Propriété

Définition

Obtient ou définit StretchDirection, qui détermine la façon dont la mise à l’échelle est appliquée au contenu d’un Viewbox.

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

Valeur de propriété

StretchDirection qui détermine la façon dont la mise à l’échelle est appliquée au contenu d’un Viewbox. La valeur par défaut est Both.

Exemples

L’exemple suivant montre comment créer une instance de Viewbox , puis définir la propriété à l’aide StretchDirection de 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

Cette propriété détermine les restrictions de mise à l’échelle qui s’appliquent au contenu d’un Viewbox. Par exemple, utilisez cette propriété pour empêcher que le contenu d’un Viewbox soit plus petit ou plus grand que sa taille d’origine.

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

Champ Identificateur StretchDirectionProperty
Propriétés de métadonnées définies sur true AffectsMeasure

S’applique à

Voir aussi