Reputation: 330892
So that it just allows selecting items already inside, but not allow typing/editing the text inside it?
Upvotes: 92
Views: 43730
Reputation: 8288
After trying ShaneFulmer's answer, I noticed that the style of the drop down was changed. This was a problem for me and apparently there is no good way of changing it. (Background color doesn't actually change it.)
I ended up adding a keypress handler to prevent adding text.
private void myCombo_KeyPress(object sender, KeyPressEventArgs e)
{
e.Handled = true;
}
Upvotes: 12