I use version 8.0 of DotnetBar DevComponents .
I would like to know how you can change the background color of a ComboBoxEx for a custom color, if I use the BackColor = MyColor property, the background color is still white.
Thanks in advance.
I use version 8.0 of DotnetBar DevComponents .
I would like to know how you can change the background color of a ComboBoxEx for a custom color, if I use the BackColor = MyColor property, the background color is still white.
Thanks in advance.
Try this code:
ComboBoxEx1.UseCustomBackColor = True 'Habilita los colores personalizados.
ComboBoxEx1.BackColor = Color.DarkRed 'Cambia el color de fondo por rojo oscuro.
ComboBoxEx1.ForeColor = Color.White 'Cambia el color de la fuente por blanco.
You can change the colors to your liking, but it is important that you always use the first one.
You can apply this in the "Form1_Load" event.
From what I see you use C #, but with that you can give an idea.