0
On Vb.net I used a command that was:
private sub txt1_LostFocus(object sender, EventArgs e) handles txt2.text, txt3.text
sender.text = Ucase(sender.text)
end sub
This caused all text boxes to be in Uper case as soon as it lost focus. I want to perform the same type of action in C# without having to program a Leave for each text box, as I can do?