Articles in this section
Category / Section

How to disable the standard highlight color of MenuButton in WinForms RibbonControlAdv?

1 min read

Disable the standard highlight color of menubutton

In RibbonControlAdv, it can be possible to changes the Default color of Menu. This can be achieved using two properties named UseDefaultHighlightColor to disable its default color and MenuColor to set desired color.

C#

//To set Color to the Ribbon control
this.ribbonControlAdv1.MenuColor = Color.Red;
//To disables the Default color
this.ribbonControlAdv1.UseDefaultHighlightColor = false;

VB

'To set Color to the Ribbon control
Me.ribbonControlAdv1.MenuColor = Color.Red
'To disables the Default color
Me.ribbonControlAdv1.UseDefaultHighlightColor = False

                                                                              Menu color changes in RibbonControlAdv with image

Figure 1. Menu colour changes in RibbonControlAdv with Image.

Samples:

C#: How to disable Standard HighLight color for Menu C#

VB: How to disable Standard HighLight color for Menu VB

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied