tags:

views:

14

answers:

1

how to change backcolor for disabled c# ComboBox for more Readablity

+1  A: 

You can't, the colors used to draw disabled controls are system colors.

A disabled ComboBox is a Label. So put a Label underneath the ComboBox and instead of disabling it, hide it.

Hans Passant