I Wrote the Codes below to Show the image in Content of the ListBoxItem
in the Tooltip window (kind of Preview effect). but they are not working at all.
<ListBox>
<ListBoxItem>
<Image x:Name="image" Source="image.jpg" Stretch="Uniform">
<Image.ToolTip>
<Image Source="{Binding RelativeSource={RelativeSource AncestorType=Image}, Path=Source}" />
</Image.ToolTip>
</Image>
</ListBoxItem>
<ListBox>
<ListBox>
<ListBoxItem>
<Image x:Name="image" Source="image.jpg" Stretch="Uniform">
<Image.ToolTip>
<Image Source="{Binding Source, RelativeSource={RelativeSource TemplatedParent}}" />
</Image.ToolTip>
</Image>
</ListBoxItem>
<ListBox>
<ListBox>
<ListBoxItem>
<Image x:Name="image" Source="image.jpg" Stretch="Uniform">
<Image.ToolTip>
<Image Source="{Binding}" />
</Image.ToolTip>
</Image>
</ListBoxItem>
<ListBox>
None of these worked.
This should work:
The
Image
is not a visual ancestor of aToolTip
but you could use theToolTip
'sPlacementTarget
property to bind to theImage
.