'Declaration Public Property BaseBackColor As Nullable(Of Color)
public Nullable<Color> BaseBackColor {get; set;}
The BaseBackColor is used to provide a single color that will be used to affect the appearance of the caption of the ContextualTabGroup within the caption area of the XamRibbon as well as the appearance of the header and content area of the RibbonTabItem instances within the group's Tabs collection.
By default, this property is set to null. When set to null, one of a set of default colors is used. The resolved value may be obtained using the BaseBackColorResolved. For convenience, there is also a BaseBackColorResolvedBrush that will return a System.Windows.Media.SolidColorBrush which uses this resolved color as the color for the brush.
Private xamRibbon As XamRibbon 'Code to Create XamRibbon object.. Private Sub contextualTabGroupProperties() 'ContextualTabGroup properties Dim contextualTG As New ContextualTabGroup() contextualTG.Caption = "Sample CTG" 'Caption contextualTG.Key = "CG1" 'Color contextualTG.BaseBackColor = Colors.Aqua 'BaseBackColor contextualTG.IsVisible = True 'IsVisible xamRibbon.ContextualTabGroups.Add(contextualTG)'add tabs to Contextual Tab Groups Dim designTabItem As New RibbonTabItem() designTabItem.Header = "Desin" contextualTG.Tabs.Add(designTabItem) Dim layoutTabItem As New RibbonTabItem() layoutTabItem.Header = "Layout" contextualTG.Tabs.Add(layoutTabItem) End Sub
XamRibbon xamRibbon; //Code to Create XamRibbon object.. //ContextualTabGroup properties private void contextualTabGroupProperties() { ContextualTabGroup contextualTG = new ContextualTabGroup(); contextualTG.Caption = "Sample CTG"; //Caption contextualTG.Key = "CG1"; //Color contextualTG.BaseBackColor = Colors.Aqua; //BaseBackColor contextualTG.IsVisible = true; //IsVisible xamRibbon.ContextualTabGroups.Add(contextualTG); //add tabs to Contextual Tab Groups RibbonTabItem designTabItem = new RibbonTabItem(); designTabItem.Header = "Desin"; contextualTG.Tabs.Add(designTabItem); RibbonTabItem layoutTabItem = new RibbonTabItem(); layoutTabItem.Header = "Layout"; contextualTG.Tabs.Add(layoutTabItem); }
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2