This should be pretty simple but I can't work out whats wrong...
I have a button:
<Button Grid.Column="2" Style="{StaticResource cust_toolbox}" Click="fuctionclick" Background="#FF004FB4" FontWeight="Bold" FontFamily="OCR A Extended" Foreground="White" Margin="4,3,3,2" BorderBrush="{x:Null}">X</Button>
and the style:
<Style x:Key="cust_toolbox" TargetType="Button">
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter Property="Background" Value="#4685d5"/>
</Trigger>
</Style.Triggers>
</Style>
But when the mouse hovers over the button the above style doesn't show? What would be a possible conflict?