Hi, I've the next code for my sfcombobbox in order to do something when de Enter/Return key is pressed, but the KeyPress event doesn't work
private Syncfusion.WinForms.ListView.SfComboBox sfCBProveedores; this is the declaration at the generated code
private void SfCBProveedores_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar==(char)Keys.Return)
{
txtdescripcion.Focus();
}
}
I tried with Keys.Enter and the result is the same. Also happens with other controls like TextBoxExt txtdescripcion
thanks!