0

在 WinformsTextbox中,我定义了新的ToolTip并配置了它。我已将其设置PasswordChar为“*”。但是,当大写锁定打开时,tooltip会显示两个。其中一个是我的,另一个是系统的默认tooltip通知。我只想展示我的tooltip. 我想禁用系统的tooltip. 我怎样才能禁用它?

4

1 回答 1

1

一种方法是从现有的文本框控件派生您自己的文本框控件并处理 EM_SHOWBALLOONTIP 消息。然后只需将此控件拖到您的表单上,而不是常规的文本框控件。

public partial class PasswordTextBox : TextBox
{
    private const int EM_SHOWBALLOONTIP = 0x1503;

    protected override void WndProc(ref Message m)
    {
        if (m.Msg == EM_SHOWBALLOONTIP)
        {
            m.Result = (IntPtr)0;
            return;
        }
        base.WndProc(ref m);
    }

    public PasswordTextBox()
    {
        InitializeComponent();
    }
}
于 2013-07-16T14:00:17.260 回答