I'm trying to show a ToolTip
with the hovered image but with different dimensions.
I tried this:
<Image Source="c:\Pictures\Airplane.jpg" Width="50" Height="50">
<Image.ToolTip>
<Image Width="300" Height="300"
Source="{Binding Path=Source, RelativeSource={RelativeSource AncestorType=Image, AncestorLevel=1}}
</Image.ToolTip>
</Image>
The above makes a bigger image on hover but the image content is blank, probably the binding didn't work.
After hours I think I need help... what am I missing?
I don't want other solutions to the problem like this answer as I'm only trying to practice my binding skills, thanks.