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