How do I change the color of an UltraButton? For eaxample I want to make my button blue.
Another possible explanation is that you are loading an application style library and the style library is overriding the settings you are applying in code. Are you calling StyleManager.Load? If so, you could set UseAppStyling on the control to False.
I tried this and it didn't help... any other options?
Yes, I had tried setting this.ultraButton.Appearance.BackColor = Color.Blue;
But setting the UseOsThemes to false did the trick. Thanks for your help!
The obvious answer is:
this.ultraButton.Appearance.BackCoor = Color.Blue;
But I suspect you already tried that and you are posting here because it didn't work. The most likely reason is that control is using themes (which it does by default). So you will also need to set UseOsThemes to false.