TextBox的LostFocus事件问题

问题描述 投票:-1回答:2

我正在尝试使用此功能:

private void IDCustTextBox_LostFocus(object sender, System.EventArgs e)
{
      if (CustName.Text == "abc")
          MessageBox.Show("Error");
}

当我在CustName文本框中键入abc,然后离开文本框时,我没有收到任何消息。在文本框属性中,我可以看到“textbox.Changed”正在使用事件LostFocus。

如何让它显示上面的错误消息?

c# winforms events textbox
2个回答
9
投票

属性窗口中的文本框没有LostFocus事件,如果要使用它,则必须添加事件处理程序,属性窗口中有文本框离开事件,可以使用如下:

private void textBox1_Leave(object sender, EventArgs e)
    {
     // do your stuff
    }

要添加事件处理程序,您需要编写以下内容:

textBox1.LostFocus += new EventHandler(textBox1_LostFocus);

然后你可以使用它如下:

private void textBox1_LostFocus(object sender, EventArgs e)
    {
     // do your stuff
    }

5
投票

您需要让该字段知道事件LostFocus有一个处理程序

由于这是not part of the properties window,您将附加处理程序

CustTextBox.LostFocus += new EventHandler(IDCustTextBox_LostFocus);
© www.soinside.com 2019 - 2024. All rights reserved.