WPF 图像工具提示

发布于 2024-10-15 04:51:43 字数 472 浏览 0 评论 0原文

我在列表框内的图像上有一个工具提示。工具提示设置如下:

<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”

有什么想法吗?

I have a tooltip on an image inside of a listbox. The tooltip is setup as follows:

<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>

but the tooltip just displays the value and not the 'Ping: XXXms'

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

著墨染雨君画夕 2024-10-22 04:51:44

您不需要在 ContentStringFormat 中添加额外的 {} 前缀。对于 ToolTip,也更喜欢在绑定中使用 ContentStringFormat 而不是 StringFormat

以下作品:

<Image.ToolTip>
    <ToolTip Content="{Binding}"
                ContentStringFormat="Ping: {0}ms" />
</Image.ToolTip>

You don't need extra {} prefix in ContentStringFormat. With ToolTip, also prefer using ContentStringFormat instead of StringFormat in binding.

Following works:

<Image.ToolTip>
    <ToolTip Content="{Binding}"
                ContentStringFormat="Ping: {0}ms" />
</Image.ToolTip>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文