using System; using System.Drawing; using System.Text; namespace DevComponents.DotNetBar.Rendering { /// /// Defines color table for the Dialog Launcher button. /// public class Office2007DialogLauncherColorTable { /// /// Gets or sets the colors for the default state. /// public Office2007DialogLauncherStateColorTable Default = new Office2007DialogLauncherStateColorTable(); /// /// Gets or sets the colors for the mouse over state. /// public Office2007DialogLauncherStateColorTable MouseOver = new Office2007DialogLauncherStateColorTable(); /// /// Gets or sets the colors for the pressed state. /// public Office2007DialogLauncherStateColorTable Pressed = new Office2007DialogLauncherStateColorTable(); } }