How to change the button color onmoveover,onmouseleave in wpf by using triggers or any other events

25,554

Inside the desired event, you can set the background color like this...

// Change the background color of button1 to Blue
button1.Background = Brushes.Blue;

You can also set this in a trigger:

<!-- Button will change from Blue to Yellow on MouseOver -->
<Style TargetType="{x:Type Button}">
    <Setter Property="Background" Value="Blue" />
    <Style.Triggers>
        <Trigger Property="IsMouseOver" Value="True">
            <Setter Property="Background" Value="Yellow" />
        </Trigger>
    </Style.Triggers>
</Style>

For even more details, check out the Property Triggers section of this article.

Share:
25,554
ibrahimkhan
Author by

ibrahimkhan

Updated on August 31, 2020

Comments

  • ibrahimkhan
    ibrahimkhan over 3 years

    I have developed a WPF Application with some buttons. Now i want to change the color of those buttons onmouseover,onmouseleave,onmouseenter by using triggers or any other events. Any suggestion plz Thanks in advance.