Insert message tooltip [closed]

-1

I would like to insert a tooltip message in the start part as well as in "change password", "close session", etc. How is that implementation correctly?

    
asked by JT25 18.07.2018 в 18:10
source

1 answer

-1

I have been left behind with the Visual Studio versions since I am working with the 2010 version but I do not think it will radically change the way we do it:

I do it this way, I'm not saying it's the only way to do it but it has worked for me. I describe how I do it:

  • From the Toolbox, drag the ToolTip component to your form.
  • Now when selecting an item from your menu, in your case HOME. You will see that in the window of properties (in that part where you change the name, the text, and the other properties ...) there is an element that is called ToolTipText , there you add the text you want to be displayed and when you execute the frm and move the mouse over the element, the ToolTip will appear.
  • I hope it will serve as a reference for what you intend to do.

        
    answered by 18.07.2018 / 19:05
    source