I have two buttons in my login dialog.
<telerik:RadButton x:Name="btnCancel" Grid.Row="3" Grid.Column="0" Grid.ColumnSpan="2" Width="100" Height="30" HorizontalAlignment="Left" VerticalAlignment="Center" Margin="10,5,0,0" IsCancel="True" Click="btnCancel_Click">Abbrechen</telerik:RadButton><telerik:RadButton x:Name="btnOK" Grid.Column="1" Grid.Row="3" Width="100" Height="30" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,5,10,0" IsDefault="True" Click="btnOK_Click">OK</telerik:RadButton>After I changed the default PasswordBox to the new RadPasswordbox, the user can no longer use the Enter-Key to finish the Login. How can I restore this function?