I have a textBox set to ReadOnly and I want a similar look for my comboBox so that my User knows that this field can't be edited.
I tried setting Enabled to false but Client doesn't like its result due to poor readability.
textBox.ReadOnly = true; //readable
comboBox.Enabled = false //not readable
My goal is to replicate the style of the ReadOnly textBox into the comboBox's style.