Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I change an image on hover over in WPF?

Tags:

hover

image

wpf

How can I change an image when I hover over it?

All I have so far is:

<Image Height="32" Source="/images/Save32.png" />
like image 916
Eli Perpinyal Avatar asked Oct 01 '09 09:10

Eli Perpinyal


2 Answers

You need to use a Trigger on the IsMouseOver property to modify the Source of the Image:

<Image>
  <Image.Style>
    <Style TargetType="{x:Type Image}">
      <Setter Property="Source" Value="C:\Image1.jpg"/>
      <Style.Triggers>
        <Trigger Property="IsMouseOver" Value="True">
          <Setter Property="Source" Value="C:\Image2.jpg"/>
        </Trigger>
      </Style.Triggers>
    </Style>
  </Image.Style>
</Image>

Note that Triggers can only be used inside Styles, and in order for a Trigger to change a property that property's value must be set by the Style and not set explicitly on the element.

like image 170
Phil Devaney Avatar answered Nov 20 '22 22:11

Phil Devaney


<Image Stretch="Fill" >
        <Image.Style>
            <Style>
                <Setter Property="Image.Source" Value="original.png" />
                <Style.Triggers>
                    <Trigger  Property="Image.IsMouseOver" Value="True">
                        <Setter Property="Image.Source" Value="mouseover.png" />
                    </Trigger>
                </Style.Triggers>
            </Style>
        </Image.Style>
</Image>

There are other ways that trigger. All right?

like image 40
Vincent BOUZON Avatar answered Nov 20 '22 22:11

Vincent BOUZON