using System; using System.Text; using System.Drawing; namespace DevComponents.DotNetBar.Rendering { /// /// Represents the color table for the tab control. /// public class Office2007TabColorTable { /// /// Gets or sets the default tab item colors. /// public Office2007TabItemStateColorTable Default = new Office2007TabItemStateColorTable(); /// /// Gets or sets the mouse over tab item colors. /// public Office2007TabItemStateColorTable MouseOver = new Office2007TabItemStateColorTable(); /// /// Gets or sets the selected tab item colors. /// public Office2007TabItemStateColorTable Selected = new Office2007TabItemStateColorTable(); /// /// Gets or sets the color of the tab background colors. /// public LinearGradientColorTable TabBackground = new LinearGradientColorTable(); /// /// Gets or sets the tab-strip background image. /// public Image TabBackgroundImage = null; /// /// Gets or sets the color of the tab panel background colors. /// public LinearGradientColorTable TabPanelBackground = new LinearGradientColorTable(); /// /// Gets or sets the color of tab panel border. /// public Color TabPanelBorder = Color.Empty; } }