How do I proper case text as the user enters it in a WPF form. I'm using the following code to do the proper casing which works fine, but I can't figure out how to do it on user entry.
Microsoft.VisualBasic.Strings.StrConv(txt.Text,VbStrConv.ProperCase,0);