当TextBox有焦点时((TextBox)sender)的通用工具提示

本文关键字:TextBox 工具提示 sender 焦点 | 更新日期: 2023-09-27 18:07:59

我正在尝试实现多个文本框的工具提示。我目前有以下

//selects all text in current textbox on textbox selection and changes BackColor to show which textbox has focus
    private void txt_enter(object sender, EventArgs e)
    {
        ((TextBox)sender).SelectAll();
        ((TextBox)sender).BackColor = Color.LightBlue;
    }

我试着添加

ToolTip.Show("message", ((TextBox)sender));

但这不是工作,我相信答案是非常简单的,但我新的这个请忍受我,有什么想法吗?

当TextBox有焦点时((TextBox)sender)的通用工具提示

工具提示是类的名称,可能不是实例的名称:

我的猜测是,试试这个:

toolTip1.Show("message", ((TextBox)sender));

当然,您需要记录"不工作"的含义。请在代码或设计器中查找ToolTip控件使用的名称。