可能重复:
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");
}
但是由于某种原因它不起作用,它仍然立即显示,我做错了什么?