using System; using System.Text; using System.Drawing; namespace DevComponents.DotNetBar.Rendering { /// /// Represents color table for ButtonItem object. /// public class Office2007ButtonItemColorTable { #region Properties /// /// Gets or sets the name of the color table. /// public string Name = ""; /// /// Gets or sets the color table applied for button in default state. /// public Office2007ButtonItemStateColorTable Default = null; /// /// Gets or sets the color table applied when mouse is over the button. /// public Office2007ButtonItemStateColorTable MouseOver = null; /// /// Gets or sets the color table applied when mouse is over the buttons inactive split part. Applies to split button appearance only. /// public Office2007ButtonItemStateColorTable MouseOverSplitInactive = null; /// /// Gets or sets the color table applied when mouse is pressed over the button. /// public Office2007ButtonItemStateColorTable Pressed = null; /// /// Gets or sets the color table applied when mouse is pressed over the button. /// public Office2007ButtonItemStateColorTable Checked = null; /// /// Gets or sets the color table applied when button is expanded. /// public Office2007ButtonItemStateColorTable Expanded = null; /// /// Gets or sets the color table applied when cursor is over button on a menu. /// public Office2007ButtonItemStateColorTable Disabled = null; #endregion } }