Hi, I have an image that i want to make it when the user hover with mouse over it, another image next to it will be displayed.
The code below, doesn't work:
<Image Source="volumen.png">
<Image.Style>
<Style>
<Style.Triggers>
<Trigger Property="IsMouseOver" Value="True">
<Setter TargetName="bar_volume" Property="Visibility" Value="Visible" />
</Trigger>
</Style.Triggers>
</Style>
</Image.Style>
</Image>
<Image Source="volumen_bar.png" Name="bar_volume" Visibility="Hidden" />
Any ideas how can i set another control setter property from another control trigger?
10x.