This question is locked. New answers and comments are not allowed.
I am using a combo in editable mode and need to catch the textinput event.
This fails to bind to the event.
<telerik:RadComboBox x:Name="Text1" HorizontalAlignment="Left" Grid.Row="0" Height="23" Margin="286,72,0,0" VerticalAlignment="Top" Width="217" SelectionChanged="Text1_SelectionChanged" TextInput="Text1_TextInput" IsEditable="True" />
I have to Physically FORCE and event handler. Why is this not working correctly ?
this.Text1.AddHandler(Control.TextInputEvent, new TextCompositionEventHandler(this.Text1_TextInput), true);