我正在用c#创建一个WPF应用程序,我有一个带图像的图像控件。我希望它在鼠标悬停在它上面时显示带有图像和文本的ToolTip
。那么当鼠标悬停在图像上时,如何使用图像制作ToolTip
。在此先感谢任何帮助。
答案 0 :(得分:1)
尝试这样的事情。
<!-- This is the image that has the tooltip -->
<Image Source="...">
<Image.ToolTip>
<!-- A tooltip can contain any element. Here we put a text
block and another image. -->
<StackPanel>
<TextBlock>This is the tooltip text</TextBlock>
<!-- This image appears inside the tooltip -->
<Image Source="..." />
</StackPanel>
</Image.ToolTip>
</Image>