SOLVED: The issue was DropDownStyle.Simple
Every time I press Enter when typing into folderComboBox it deletes the Text.
It turns out that the problem doesn't occur in a fresh project. It only deletes the text when I use auto completion.
ComboBox folderComboBox = new ComboBox();
void folderComboBox_KeyUp(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
e.SuppressKeyPress = true;
e.Handled = true;
}
}
- I do not have a Form.AcceptButton (mentioned as an issue in another post).
Similar Posts: