Given this for a single button:
<Button xml:space="preserve"> Send </Button>
How does one set this for all buttons as a Style?
<Style TargetType="{x:Type Button}">
<Style.Setters>
<Setter Property="Background" Value="LightGray"/>
</Style.Setters>
</Style>