Is it possible to change a Winforms combobox to disable typing into it?

.net, c#, winforms

Solution

Set `ComboBox.DropDownStyle` to `ComboBoxStyle.DropDownList`.

Problem

So that it just allows selecting items already inside, but not allow typing/editing the text inside it?

Original source