如何为单个图像的工具提示设置前景色?(页面上有多个图像控件,但我只想将样式应用于一个)
安德鲁
对于要设置前景的图像,添加以下 xaml 代码:
<Image Name="image1" Source="Untitled.png">
<Image.ToolTip>
<ToolTip Foreground="Red">
<StackPanel>
<TextBlock FontWeight="Bold">Submit Request</TextBlock>
<TextBlock>Submits the request to the server.</TextBlock>
</StackPanel>
</ToolTip>
</Image.ToolTip>
</Image>
Foreground="Red"设置该特定工具提示的前景颜色。
输出: