1

Is it possible force to display of tooltip in a control? I have no idea how do this.

2 Answers 2

9
 ToolTip mytoolTip = new ToolTip();
 mytoolTip.ShowAlways = true; // to force it
 mytoolTip.Show("This is my ToolTip", myControl);
Sign up to request clarification or add additional context in comments.

Comments

6

You can try:

ToolTip tt = new ToolTip();
tt.Show("Hello", myControl);

See MSDN ToolTip Class

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.