我可以知道如何在工具提示中更改特定单词的前景吗?我想将“RED”字改为colors.Red;请注意,工具提示中的所有剩余单词应保持黑色。有人可以帮忙吗?
XAML代码段:
<Button Name="myBtn" Content="Click" ToolTip="Click this to change
the text to RED Color" Click="myBtn_Click"/>
答案 0 :(得分:4)
这很容易实现:
<Button Name="myBtn" Content="Click" Click="myBtn_Click">
<Button.ToolTip>
<TextBlock>
<Run>Click this to change the text to </Run>
<Run Foreground="Red">RED</Run>
<Run> Color</Run>
</TextBlock></Button.ToolTip>
Test
</Button>