为什么ToolTip不会显示在WebBrowser控件中?

时间:2014-07-25 01:58:50

标签: c# winforms tooltip webbrowser-control

我为ToolTip控件分配了WebBrowser值,但工具提示未显示。

// Create the ToolTip and associate with the Form container.
ToolTip toolTip2 = new ToolTip();

// Set up the delays for the ToolTip.
toolTip2.AutoPopDelay = 5000;
toolTip2.InitialDelay = 3000;
toolTip2.ReshowDelay = 500;

// Force the ToolTip text to be displayed whether or not the form is active.
toolTip2.ShowAlways = true;

// Set up the ToolTip text for the Button and Checkbox.
toolTip2.SetToolTip(this.WebBrowser1, "My Web Browser");

1 个答案:

答案 0 :(得分:1)

您要显示的工具提示必须是HTML页面的一部分。您使用Title属性。例如:

 <p><abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p>

 <a  title="Click on me"  href="http://blah" target="_self">I am a link</a>

当您将鼠标悬停在WebBrowser控件上时,它将自动显示您的工具提示。