AdornerPanel.SetAdornerVerticalAlignment, méthode
Définit la propriété jointe AdornerVerticalAlignment spécifiée pour l'élément fourni.
Espace de noms : Microsoft.Windows.Design.Interaction
Assembly : Microsoft.Windows.Design.Interaction (dans Microsoft.Windows.Design.Interaction.dll)
Syntaxe
'Déclaration
Public Shared Sub SetAdornerVerticalAlignment ( _
obj As DependencyObject, _
value As AdornerVerticalAlignment _
)
public static void SetAdornerVerticalAlignment(
DependencyObject obj,
AdornerVerticalAlignment value
)
public:
static void SetAdornerVerticalAlignment(
DependencyObject^ obj,
AdornerVerticalAlignment value
)
static member SetAdornerVerticalAlignment :
obj:DependencyObject *
value:AdornerVerticalAlignment -> unit
public static function SetAdornerVerticalAlignment(
obj : DependencyObject,
value : AdornerVerticalAlignment
)
Paramètres
- obj
Type : System.Windows.DependencyObject
Élément sur lequel la propriété jointe est écrite.
- value
Type : Microsoft.Windows.Design.Interaction.AdornerVerticalAlignment
AdornerVerticalAlignment à définir à AdornerPanel.
Exemples
L'exemple de code suivant montre comment utiliser la méthode SetAdornerVerticalAlignment pour spécifier l'alignement vertical d'un ornement. Pour plus d'informations, consultez Procédure pas à pas : création d'un ornement au moment du design.
' The slider extends the full width of the control it adorns.
AdornerPanel.SetAdornerHorizontalAlignment( _
opacitySlider, _
AdornerHorizontalAlignment.Stretch)
' Position the adorner above the control it adorns.
AdornerPanel.SetAdornerVerticalAlignment( _
opacitySlider, _
AdornerVerticalAlignment.OutsideTop)
' Position the adorner 5 pixels above the control.
AdornerPanel.SetAdornerMargin( _
opacitySlider, _
New Thickness(0, 0, 0, 5))
// The slider extends the full width of the control it adorns.
AdornerPanel.SetAdornerHorizontalAlignment(
opacitySlider,
AdornerHorizontalAlignment.Stretch);
// Position the adorner above the control it adorns.
AdornerPanel.SetAdornerVerticalAlignment(
opacitySlider,
AdornerVerticalAlignment.OutsideTop);
// Position the adorner 5 pixels above the control.
AdornerPanel.SetAdornerMargin(
opacitySlider,
new Thickness(0, 0, 0, 5));
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
Microsoft.Windows.Design.Interaction, espace de noms
Autres ressources
Fournisseurs de fonctionnalités et connecteurs de fonctionnalités