79619818

Date: 2025-05-13 14:02:39
Score: 1.5
Natty:
Report link

Source is a dependency property on your small image, so you can just bind the tooltip image Source to that. As @Clemens suggested, you might consider binding both to a view model property.

<Image Name="lastImage" Height="400" Width="400" Source="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=Image}, Path=Source}"/>
Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @Clemens
  • Starts with a question (0.5): is a
  • Low reputation (0.5):
Posted by: J Straight