Gets or sets the background color of a ribbon's application menu.

Syntax

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

Examples

The following example shows a Ribbon.Colors class. The class uses its ApplicationMenuColor property and sets the value of the property to White.

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

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

ribbonColors.ApplicationMenuColor = System.Drawing.Color.White