how to set balloon tooltip for an image in silverlight?
+1
A:
Use the ToolTipService like so:
<Image>
<ToolTipService.ToolTip>
<ToolTip>
<!-- Any XAML Content Here -->
</ToolTip>
</ToolTipService.ToolTip>
</Image>
Stephan
2010-06-25 14:48:31