Combo box -- Locking
-
I just added three items in combo box and I made the SelectedIndex = 0. I would like to lock the combo box so that the user not be able to select other than the first item.
-
I just added three items in combo box and I made the SelectedIndex = 0. I would like to lock the combo box so that the user not be able to select other than the first item.
-
I dont like to make the enable property to false. I just want the combox to be visible and the user can show all the items in it. But will not be able to select any items from it(combo box).
-
I dont like to make the enable property to false. I just want the combox to be visible and the user can show all the items in it. But will not be able to select any items from it(combo box).
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { comboBox1.SelectedIndex = 0; }