我在列表框内的图像上有一个工具提示。工具提示的设置如下:
<Image Grid.Column="0" Source="{Binding PingRankImage}"
Width="16" Height="16"
HorizontalAlignment="Center" VerticalAlignment="Center">
<Image.ToolTip>
<ToolTip Content="{Binding Ping, StringFormat='Ping: {0}ms'}"
ContentStringFormat="{}Ping: {0}ms}" />
</Image.ToolTip>
</Image>
但工具提示只显示值,而不是'Ping:XXXms'
有什么想法吗?
答案 0 :(得分:9)
{}
中您不需要额外的ContentStringFormat
前缀。使用ToolTip
时,也更喜欢在绑定中使用ContentStringFormat
而不是StringFormat
。
以下作品:
<Image.ToolTip>
<ToolTip Content="{Binding}"
ContentStringFormat="Ping: {0}ms" />
</Image.ToolTip>