J'ai un formulaire en C# qui utilise une fonction ComboBox
. Comment empêcher un utilisateur d'entrer manuellement du texte dans l'écran d'accueil ? 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 que A, B, C soient les seules options.
0 votes
Duplicata possible de Comment désactiver l'édition d'éléments dans une combobox en c# ?