How can i override the default style of a control in SL ? So i dont have to do Style={...} in all Controls ...
In WPF
<Style TargetType="Button">
<Setter Property="Margin" Value="10"></Setter>
</Style>
would put a Margin to all Buttons. What about SL ?