如何在C#中强制显示工具提示?

时间:2012-01-05 17:18:18

标签: c# .net winforms tooltip

是否可以强制在控件中显示工具提示?我不知道怎么做。

2 个答案:

答案 0 :(得分:7)

 ToolTip mytoolTip = new ToolTip();
 mytoolTip.ShowAlways = true; // to force it
 mytoolTip.Show("This is my ToolTip", myControl);

答案 1 :(得分:6)

您可以尝试:

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

请参阅MSDN ToolTip Class