J'ai les deux boutons suivants en XAML:
<Button Content="Previous"
Margin="10,0,0,10"/>
<Button Content="Next"
Margin="0,0,10,10"/>
Comment puis-je définir "10" pour être une variable afin que je puisse la changer en un seul endroit, quelque chose comme ceci:
CODE PSEUDO:
<variable x:key="theMargin"/>
<Button Content="Previous"
Margin="{Variable theMargin},0,0,{Variable theMargin}"/>
<Button Content="Next"
Margin="0,0,{Variable theMargin},{Variable theMargin}"/>
Essaye ça:
ajouter à la tête du fichier xaml
xmlns:System="clr-namespace:System;Assembly=mscorlib"
Ajoutez ensuite ceci à la section des ressources:
<System:Double x:Key="theMargin">2.35</System:Double>
Enfin, utilisez une épaisseur sur la marge:
<Button Content="Next">
<Button.Margin>
<Thickness Top="{StaticResource theMargin}" Left="0" Right="0"
Bottom ="{StaticResource theMargin}" />
</Button.Margin>
</Button>
De nombreux types de systèmes peuvent être définis de cette façon: int, char, string, DateTime, etc.
Remarque: vous avez raison ... J'ai dû faire de meilleurs tests .. changé en code pour que cela fonctionne
Pourquoi n'essayez-vous pas d'ajouter la valeur sous la forme StaticResource
?
Resources.Add("theMargin", 10);
Ensuite, vous pouvez obtenir cette valeur comme ceci:
<Button Content="Previous"
Margin="{StaticResource theMargin},0,0,{StaticResource theMargin}"/>
<Button Content="Next"
Margin="0,0,{StaticResource theMargin},{StaticResource theMargin}"/>
Vous devez l'invoquer avant InitializeComponent ou utiliser l'interface INotifyPropertyChanged après cela