2

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

4

1 回答 1

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>
于 2009-07-22T15:52:57.610 回答