Gets or sets the color of a ribbon's first tab, which opens the application menu.

Syntax

public Color ApplicationMenuTabColor { get; set; }
Public Property ApplicationMenuTabColor As Color

Examples

The following example shows a Ribbon.Colors class. The class uses its ApplicationMenuTabColor property and sets the color of a ribbon's first tab to White.

TXTextControl.Windows.Forms.Ribbon.Ribbon.Colors ribbonColors =  
new TXTextControl.Windows.Forms.Ribbon.Ribbon.Colors();

ribbonColors.ApplicationMenuTabColor
= System.Drawing.Color.White;
Dim ribbonColors As TXTextControl.Windows.Forms.Ribbon.Ribbon.Colors = 
New TXTextControl.Windows.Forms.Ribbon.Ribbon.Colors()

ribbonColors.ApplicationMenuTabColor
= System.Drawing.Color.White