I'm playing with a custom TextBox inheriting from the WPF TextBox, trying to learn about WPF events, so my problem is the following: When the TextBox receives an input, I want it to receive instead a case inverted version of this input. For example, if I type on the key (lowercase) "a", I want the TextBox to print a (uppercase) "A" instead of (lowercase) "a".
My (partial) solution is, in my custom TextBox, to intercept the TextInput event by overloading the method OnPreviewTextInput. When this method is called, I receive a TextCompositionEventArgs whose Text property is "a".
So my first reflex would be updating this Text property to "A", as in the following code:
protected override void OnPreviewTextInput(TextCompositionEventArgs e)
{
e.Text = "A" ;
base.OnPreviewTextInput(e) ;
}
The problem is that e.Text is readonly, and that I found no easy way to do that (and I searched, and I tweaked both the TextComposition and TextCompositionEventArgs, trying to construct one from zero, copying the data, etc.).
Did I miss something obvious? Is there a way to do it?
P.S.: The other solution was to use the WPF TextBox interface to tweak the result (retrieving the current .Text property, putting the inverted character inside, etc.), but this is not the desired solution as it bypasses completely the routed event generation/modification problem I'm trying to solve)
e.Textis readonly (as I wrote in the original question), buteis not (ase.Handledcan be modified)... Thanks for the input, though... ^_^ ... And what do you mean by "And Key.A is is a little clean syntax"? And by "Look at overriding"? Your comment is confusing. – paercebal Aug 25 '11 at 14:48