我想我有一个不寻常的问题,关于工具提示的很多问题是:为什么它不显示,或者为什么不显示多次。但是我的问题是,当我将鼠标悬停在我的工具提示标签上时,如果我将鼠标缓慢移动到它为每个像素显示的标签上,工具提示会显示几次。我试过类似的东西:ToolTip1.ReshowDelay = 500;
但这似乎没有任何效果。我也尝试使用label1_MouseEnter
, 和 a label1_MouseLeave
,但也无法正常工作。
我希望有人可以帮助我
这是所有必须发生的代码::)
private void label1_Hover(object sender, EventArgs e)
{
//Enter Help box texboxes
System.Windows.Forms.ToolTip ToolTip1 = new System.Windows.Forms.ToolTip();
ToolTip1.ShowAlways = true;
ToolTip1.Show("Enter the Drive letter in the first textbox" + "\n" + "Enter the submap in the second textbox", label1);
}