Articles in this section
Category / Section

How to customize the QAT panel backcolor in the WinForms RibbonControlAdv?

1 min read

Customize the QAT panel backcolor

You can change the backcolor of the Quick Access ToolBar when it is below the Ribbon by using the BottomToolStripBackColor property in the TouchStyleColorTable of the RibbonControlAdv.

C#

//Initializes the TouchStyleColorTable.
TouchStyleColorTable touchColorTable = new TouchStyleColorTable();
//Specifies the Botton ToolStrip backcolor.
touchColorTable.BottomToolStripBackColor = Color.Red;
//Applies the color table to the RibbonControlAdv.
this.ribbonControlAdv1.ApplyTouchStyleColorTable(touchColorTable);

VB

'Initializes the TouchStyleColorTable.
Dim touchColorTable As New TouchStyleColorTable()
'Specifies the Botton ToolStrip backcolor.
touchColorTable.BottomToolStripBackColor = Color.Red
'Applies the color table to the RibbonControlAdv.
Me.ribbonControlAdv1.ApplyTouchStyleColorTable(touchColorTable)

 

Note:

This property can be used when the RibbonStyle is specified as TouchStyle.


Before applying the BottomToolStripBackColor in the quick access toolbar

Figure 1: Before applying the BottomToolStripBackColor in the Quick Access ToolBar of the RibbonControlAdv.

After applying the BottomToolStripBackColor in the quick access toolbar

Figure 2: After applying the BottomToolStripBackColor in the Quick Access ToolBar of the RibbonControlAdv.

Samples:

C#: Ribbon_BottomToolStrip_C#

VB: Ribbon_BottomToolStrip_VB

Reference link: https://help.syncfusion.com/windowsforms/ribbon/customization-support

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