1: <Window>
   2:     <Grid>
   3:         <Grid.Resources>
   4:             <Style TargetType="{x:Type Button}" x:Key="ButtonStyle">
   5:                 <Setter Property="Height" Value="22"/>
   6:                 <Setter Property="Width" Value="60"/>
   7:             </Style>
   8:         </Grid.Resources>
   9:         <Button Content="Button" Style="{StaticResource ButtonStyle}"/>
  10:         <Button Content="Button" Style="{StaticResource ButtonStyle}" Margin="156,144,286,145" />
  11:     </Grid>
  12: </Window>