WPFには、幅/高さをリソースとして指定する方法があります。これにより、たとえば、いくつかのスタイルで再利用できます。マージン/パディング?
承知しました。
<Page
xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
xmlns:sys="clr-namespace:System;Assembly=mscorlib"
xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml">
<Page.Resources>
<sys:Double x:Key="Height">200</sys:Double>
<sys:Double x:Key="Width">200</sys:Double>
</Page.Resources>
<Grid>
<Rectangle
Height="{StaticResource Height}"
Width="{StaticResource Width}"
Fill="Blue"/>
</Grid>
</Page>