XAMLには次の2つのボタンがあります。
<Button Content="Previous"
Margin="10,0,0,10"/>
<Button Content="Next"
Margin="0,0,10,10"/>
「10」を変数として定義すると、次のように1か所で変更できます。
擬似コード:
<variable x:key="theMargin"/>
<Button Content="Previous"
Margin="{Variable theMargin},0,0,{Variable theMargin}"/>
<Button Content="Next"
Margin="0,0,{Variable theMargin},{Variable theMargin}"/>
これを試して:
xamlfileの先頭に追加します
xmlns:System="clr-namespace:System;Assembly=mscorlib"
次に、これをリソースセクションに追加します。
<System:Double x:Key="theMargin">2.35</System:Double>
最後に、マージンに厚さを使用します。
<Button Content="Next">
<Button.Margin>
<Thickness Top="{StaticResource theMargin}" Left="0" Right="0"
Bottom ="{StaticResource theMargin}" />
</Button.Margin>
</Button>
Int、char、string、DateTimeなど、多くのシステムタイプをこのように定義できます。
注:そのとおりです...いくつかのより良いテストを行う必要がありました..動作するようにコードに変更しました
Sorskootの答えと同様に、使用する厚さリソースを追加して、各マージン方向を個別に定義できます
<UserControl.Resources>
<Thickness x:Key="myMargin" Top="5" Left="10" Right="10" Bottom ="5"></Thickness>
</UserControl.Resources>
次に、厚さをマージンとして使用します。
<Button Content="Next" Margin="{StaticResource myMargin}"/>
StaticResource
として値を追加してみませんか?
Resources.Add("theMargin", 10);
次に、このような値を取得できます。
<Button Content="Previous"
Margin="{StaticResource theMargin},0,0,{StaticResource theMargin}"/>
<Button Content="Next"
Margin="0,0,{StaticResource theMargin},{StaticResource theMargin}"/>
InitializeComponentの前にこれを呼び出すか、その後でINotifyPropertyChangedインターフェイスを使用する必要があります