我有一个动态创建的文本框。我想在Leave事件上注册一个函数。我该怎么做?
textbox = new TextBox();
答案 0 :(得分:1)
尝试:
textbox.Leave += new EventHandler(textBoxLeave);
实际处理程序:
private void textBoxLeave(object sender, EventArgs e)
{
// put your code here
}