Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WPF Image Tooltip

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?

like image 461
tcables Avatar asked Jan 31 '11 04:01

tcables


1 Answers

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>
like image 102
decyclone Avatar answered Sep 17 '22 14:09

decyclone