对于文本框,我想在焦点位于文本框时立即显示工具提示,并在焦点持续时保持在那里 - 而不仅仅是当鼠标悬停在文本框上时。
我该怎么做?
答案 0 :(得分:15)
Enter
和Leave
事件在这里可能很有用,并以持续时间0显示它以保持它。
private ToolTip tt;
private void textBox1_Enter(object sender, EventArgs e) {
tt = new ToolTip();
tt.InitialDelay = 0;
tt.IsBalloon = true;
tt.Show(string.Empty, textBox1);
tt.Show("I need help", textBox1, 0);
}
private void textBox1_Leave(object sender, EventArgs e) {
tt.Dispose();
}
注意:在我的示例中调用Show(...)
方法两次将强制“指针”正确指向控件。
答案 1 :(得分:4)
已经测试过,事件名称为:
private void textbox_Enter(object sender, EventArgs e)
{
toolTip1.Show("your tip here", textbox);
}
private void textbox_Leave(object sender, EventArgs e)
{
toolTip1.Hide(textbox);
}
工具提示是一个控件,需要从工具箱中添加。
答案 2 :(得分:2)
使用mouse hover
和mouse leave
个事件
private void textBox1_MouseHover(object sender, EventArgs e)
{
toolTip1.Show("your tip here", textBox2);
}
private void textBox1_MouseLeave(object sender, EventArgs e)
{
toolTip1.Hide(textBox2);
}
>
答案 3 :(得分:0)
Windows窗体
public partial class FormWindow : Form
{
//Constructor
public FormWindow()
{
txtUrl.Text = "Enter text here";
txtUrl.ForeColor = Color.Gray;
txtUrl.GotFocus += TxtUrl_GotFocus;
txtUrl.LostFocus += TxtUrl_LostFocus;
}
private void TxtUrl_GotFocus(object sender, EventArgs e)
{
txtUrl.Text = "";
txtUrl.ForeColor = Color.Black;
}
private void TxtUrl_LostFocus(object sender, EventArgs e)
{
if (string.IsNullOrWhiteSpace(txtUrl.Text))
{
txtUrl.Text = "Enter text here";
txtUrl.ForeColor = Color.Gray;
}
}
}
答案 4 :(得分:-1)
使用System.Windows.Forms.ToolTip并在文本框 GotFocus 事件中显示它并在 LostFocus 事件中隐藏它:
void textBox_GotFocus(object sender, EventArgs e)
{
toolTip.Show("your tip", textBox);
}
void textBox_LostFocus(object sender, EventArgs e)
{
toolTip.Hide(textBox);
}