Our application uses RadMaskedTextInputs for user data input. When Enter is pressed, we perform field validation and focus the fields that need revising. If however two of these controls are focused one after the other, the application freezes. To test try the following:
Create a WPF with two RadMaskedTextInputs
<Grid>
<telerik:RadMaskedTextInput Width="100" Height="20" Margin="200,122,0,167" Name="txt1"></telerik:RadMaskedTextInput>
<telerik:RadMaskedTextInput Width="100" Height="20" Margin="200,155,0,134" Name="txt2"></telerik:RadMaskedTextInput>
</Grid>
On txt2 keyup event:
Private Sub txt2_KeyUp(sender As Object, e As System.Windows.Input.KeyEventArgs) Handles txt2.KeyUp
If e.Key = Key.Enter Then
txt1.Focus()
txt2.Focus()
End If
End Sub
Run the application, type something in txt2 and press enter.
Regards