I don't understeand why this code doesn't work.
The button color is still default when I hover my mouse over it.
<Window>
<Window.Resources>
<Style x:Key="hover" TargetType="Button">
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="Red" />
</Trigger>
</Style.Triggers>
</Style>
</Window.Resources>
<Grid>
<Button
Width="144"
Height="58"
Margin="320,177,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="Button"
Style="{StaticResource hover}" />
</Grid>
</Window>