In C#, what event do you attach an event to for when a textbox loses focus? My function would be something like this:
private void txtModifier1_Blur(object sender, EventArgs e)
{
// code...
}
... and I would assign it like this:
this.txtModifier1.Blur += new System.EventHandler(this.txtModifier1_Blur);
... but there is no Blur
. Any ideas?