0

可能重复:
C# 工具提示显示时间不够长

用户在控件上移动鼠标光标后,我需要在 3 秒内显示工具提示,现在它会立即显示。

我试过这样:

this.toolTip.AutoPopDelay = 3000;
this.toolTip.InitialDelay = 3000;
this.toolTip.ReshowDelay = 3000;
this.toolTip.AutomaticDelay = 3000;

private void control_MouseMove(object sender, MouseEventArgs e)
{
    toolTip.SetToolTip(control, "My info");  
}

但是由于某种原因它不起作用,它仍然立即显示,我做错了什么?

4

1 回答 1

-1

更改this.toolTip.InitialDelay = 3000;this.toolTip.InitialShowDelay = 3000;这将设置显示延迟

于 2012-12-18T17:25:36.163 回答