How to Make a Balloon Help in WPF? [closed]

0

I'm developing a WPF application, and in it, I need each Label to have a Balloon, for example, Name * (full name); can anybody help me? I would like to do in pure WPF, but if it does not, is there any simple way to do it?

    
asked by anonymous 13.11.2018 / 20:02

1 answer

0

Here is an example from the previously informed site:

<Button ToolTip="Saves the current document"
        ToolTipService.ShowDuration="20"
        Content="Save">
</Button>

By adding Tooltip properties, you can already display a message when the mouse passes over it.

    
14.11.2018 / 13:22