I want to assign both static and dynamic styles to a control at same time. Something like this
<Button
  Style="{StaticResource homeScreenBackButton}"
  Style="{DynamicResource MahApps.Metro.Styles.MetroCircleButtonStyle}">
    <Button.Content>
      <Image Source="wwwroot/images/homescreen-back2.png" />
    </Button.Content>
</Button>
I could easily achieve this
<Button
  Width="38"
  Height="38"
  HorizontalAlignment="Center"
  Cursor="Hand"
  Style="{DynamicResource MahApps.Metro.Styles.MetroCircleButtonStyle}">
    <Button.Content>
      <Image Source="wwwroot/images/homescreen-back2.png" />
    </Button.Content>
</Button>
But I don't want to hardcode the styles in this way.
 
     
    