我有一些带有工具提示的 TextBlocks,我想将图像添加到工具提示中(这意味着,我希望有带有文本和图像的工具提示)。
有谁知道我怎么能以简单的方式做到这一点?
非常感谢!
这是处理它的一种方法:
<TextBlock>
<TextBlock.ToolTip>
<StackPanel Orientation="Horizontal">
<Image Source="images/Item 2.gif" />
<TextBlock>My tooltip text</TextBlock>
</StackPanel>
</TextBlock.ToolTip>
Here is my text.
</TextBlock>
代替
<TextBlock ToolTip="Content"/>
你可以做:
<TextBlock>
<TextBlock.ToolTip>
<!--insert everything you want here-->
<TextBlock Text="Content"/>
</TextBlock.ToolTip>
</TextBlock>