How do you change the colour of the application menu header?
I can change the footer colour using the following property:
ultraToolbarsManager1.Ribbon.ApplicationMenu.FooterToolbar.Settings.Appearance.BackColor
Regards,
Dave
Hello Dave,
That portion of the Application Menu is the ApplicationMenuHeader, and unfortunately the UltraToolbarsManager does not expose an Appearance property to customize it's rendering. However, if you are using our Application Styling framework, it is stylable using the ApplicationMenuHeader UIRole.
Additionally, you can change the styling of this UIElement using a DrawFilter that simply changes the AppearanceData.BackColor for the ApplicationMenuHeaderUIElement. I've attached a simple sample that demonstrates this exact behavior.
Let me know if you have any questions. Thanks,
Chris
Thanks for the workaround. Any likelihood of exposing the HeaderToolbar settings? I was banging my head over this for a while until I found this thread.