Hi,
I would like to change the appearance of the Dropdownbutton, to be precise, its color, how can i do that?
forgat to mention in a ultraComboEditor...
The steps I outlined above, regarding setting the ButtonAppearance and ThemedElementAlpha or UseOSThemes properties, should be working for the default button (and do in my quick test). Is there a specific aspect of this that isn't working in your case?
-Matt
Ok, but how do i set the Color of the "Default" dropdown button?
There is a ButtonAppearance property on the UltraComboEditor that you can use to change the appearance of all the buttons in that editor; you may have to set the ThemedElementAlpha property to Transparent so that the OS themes aren't rendered, though (or set UseOSThemes on the whole control to False). If you have other buttons that you want to alter, you can set the appearance on them in code:
this.ultraComboEditor1.ButtonsRight[0].Appearance.BackColor = Color.Red;