I want to disable a combobox
, but at the same time I want to let the users see the other options available (that is, I want to enable the dropdown
).
By default, when ComboBox.Enabled = false
, the dropdown
is also disabled (nothing happens when we click on the combobox
).
My first thought is to leave it enabled and handle the ComboBox.SelectedIndex event
to set it back to the default value (I will just need to gray it out in some way.)
I am wondering if there is any native functionality like this that I am missing, or if there would be other way of doing it.