我只是想要一些简单的文字叠加,当我告诉它时,在某个位置显示几秒钟,就像正常的工具提示一样。
但是,我不希望当鼠标悬停在与其关联的控件上时,会自动显示正常的工具提示行为。我可以在正常的工具提示中禁用此行为,还是可以使用其他控件?
答案 0 :(得分:3)
您可以自己调用工具提示:
private void button1_Click(object sender, EventArgs e)
{
ToolTip tip = new ToolTip();
tip.ToolTipTitle = "Title";
tip.Show("Hello", button1, 10, button1.Height - 6, 5000);
}