C# - 如何为动态创建的文本框编写Leave事件

时间:2015-12-10 20:11:02

标签: c#

我有一个动态创建的文本框。我想在Leave事件上注册一个函数。我该怎么做?

textbox = new TextBox();

1 个答案:

答案 0 :(得分:1)

尝试:

 textbox.Leave += new EventHandler(textBoxLeave);

实际处理程序:

    private void textBoxLeave(object sender, EventArgs e)
    {
        // put your code here
    }