使用工具提示的图像控制

时间:2009-07-22 15:49:06

标签: c# wpf image tooltip

我正在用c#创建一个WPF应用程序,我有一个带图像的图像控件。我希望它在鼠标悬停在它上面时显示带有图像和文本的ToolTip。那么当鼠标悬停在图像上时,如何使用图像制作ToolTip。在此先感谢任何帮助。

1 个答案:

答案 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>