Comment éviter la saisie manuelle des données dans une zone de liste déroulante en C#

J'ai un formulaire en C# qui utilise un ComboBox.
Comment puis-je empêcher un utilisateur de la saisie manuelle de texte dans le ComboBox en C#?

this.comboBoxType.Font = new System.Drawing.Font("Arial", 15.75F);
this.comboBoxType.FormattingEnabled = true;
this.comboBoxType.Items.AddRange(new object[] {
            "a",
            "b",
            "c"});
this.comboBoxType.Location = new System.Drawing.Point(742, 364);
this.comboBoxType.Name = "comboBoxType";
this.comboBoxType.Size = new System.Drawing.Size(89, 32);
this.comboBoxType.TabIndex = 57;   

Je veux A B C d'être les seules options.

InformationsquelleAutor Iakovl | 2012-03-10