How to Make a Help Balloon in WPF?

Asked

Viewed 50 times

0

I am developing a WPF application, and in it, I need each Label to have an Informative Balloon, as example, Name* (full name); Could anyone help me? I would like to do in pure WPF, but if not, there is some simple way to do?

  • 1

    Wouldn’t that be the property Tooltip? https://www.wpftutorial.net/ToolTip.html

  • @L.Falousk posts an answer with the example of implementation

1 answer

0


Follow an example taken from the site already informed:

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

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

  • Like, if I select the textbox or cmb, I want this message to appear...

  • Okay, I’ll change here.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.