I can change only font (to eg bold), but not other stuff - eg background
Why that ?
Hello,
I have been looking into your question and my suggestion is to set the UltraGrid UseOsThemes property to False. By defaults its value is True and because of that, the default operating system theme is applied to the control. This overrides some properties like BackColor.
After it is set to False from the Properties window in VisualStudio or from code-behind
this.ultraGrid1.UseOsThemes = Infragistics.Win.DefaultableBoolean.False;
the BackColor would be successfully applied.
Please test this approach on your side and let me know if I may be of any further assistance.
Sincerely,
Teodosia Hristodorova
Associate Software Developer
Thank you !
Indeed this helped