Reputation: 165
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;
}
}
Similar Posts:
Upvotes: 1
Views: 3185
Reputation: 165
Solution:
comboBox.DropDownStyle = DropDownStyle.DropDown; //DEFAULT
Issues:
comboBox.DropDownStyle = DropDownStyle.Simple; //MAIN CAUSE OF ISSUE
comboBox.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
comboBox.AutoCompleteSource = AutoCompleteSource.FileSystemDirectories;
Upvotes: 1