using System; using System.Drawing; using System.Text; namespace DevComponents.DotNetBar.Rendering { /// /// Defines the color table for dialog launcher state. /// public class Office2007DialogLauncherStateColorTable { /// /// Gets or sets the color of dialog launcher symbol. /// public Color DialogLauncher = ColorScheme.GetColor("668EAF"); /// /// Gets or sets the shade color of dialog launcher symbol. /// public Color DialogLauncherShade = Color.White; /// /// Gets or sets the background color for the top part of the element. /// public LinearGradientColorTable TopBackground = new LinearGradientColorTable(); /// /// Gets or sets the background color for the bottom part of the element. /// public LinearGradientColorTable BottomBackground = new LinearGradientColorTable(); /// /// Gets or sets the outer border colors. /// public LinearGradientColorTable OuterBorder = new LinearGradientColorTable(); /// /// Gets or sets the inner border colors. /// public LinearGradientColorTable InnerBorder = new LinearGradientColorTable(); } }