using System; using System.Text; using System.Drawing; namespace DevComponents.DotNetBar.Rendering { /// /// Represents color table for single state of Office 2007 style system button displayed in form caption. /// public class Office2007SystemButtonStateColorTable { /// /// Gets or sets the outer border colors. /// public LinearGradientColorTable OuterBorder = new LinearGradientColorTable(); /// /// Gets or sets the inner border colors. /// public LinearGradientColorTable InnerBorder = new LinearGradientColorTable(); /// /// Gets or sets top part background colors. /// public LinearGradientColorTable TopBackground = new LinearGradientColorTable(); /// /// Gets or sets bottom part background colors. /// public LinearGradientColorTable BottomBackground = new LinearGradientColorTable(); /// /// Gets or sets highlight colors for the top background part. /// public LinearGradientColorTable TopHighlight = new LinearGradientColorTable(); /// /// Gets or sets highlight colors for the bottom background part. /// public LinearGradientColorTable BottomHighlight = new LinearGradientColorTable(); /// /// Gets or sets the foreground color for the button. /// public LinearGradientColorTable Foreground = new LinearGradientColorTable(); /// /// Gets or sets the dark shading color for the foreground. /// public Color DarkShade = Color.Empty; /// /// Gets or sets the light shading color for the foreground. /// public Color LightShade = Color.Empty; } }