AdornerPanel.SetAdornerMargin, méthode
Définit la propriété jointe AdornerMargin 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 SetAdornerMargin ( _
obj As DependencyObject, _
value As Thickness _
)
public static void SetAdornerMargin(
DependencyObject obj,
Thickness value
)
public:
static void SetAdornerMargin(
DependencyObject^ obj,
Thickness value
)
static member SetAdornerMargin :
obj:DependencyObject *
value:Thickness -> unit
public static function SetAdornerMargin(
obj : DependencyObject,
value : Thickness
)
Paramètres
- obj
Type : System.Windows.DependencyObject
Élément sur lequel la propriété jointe est écrite.
- value
Type : System.Windows.Thickness
Thickness de la marge à définir pour le AdornerPanel.
Exemples
L'exemple de code suivant montre comment utiliser la méthode SetAdornerMargin pour spécifier les marges 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