using System;
using System.Text;
namespace DevComponents.DotNetBar.Rendering
{
///
/// Defines the color table for the combo box.
///
public class Office2007ComboBoxColorTable
{
///
/// Gets or sets the color for combo box in default state.
///
public Office2007ComboBoxStateColorTable Default = new Office2007ComboBoxStateColorTable();
///
/// Gets or sets the color for standalone combo box in default state. Standalone combo box is a control not used by ComboBoxItem.
///
public Office2007ComboBoxStateColorTable DefaultStandalone = new Office2007ComboBoxStateColorTable();
///
/// Gets or sets the colors when mouse is over the control.
///
public Office2007ComboBoxStateColorTable MouseOver = new Office2007ComboBoxStateColorTable();
///
/// Gets or sets the colors when control is dropped down.
///
public Office2007ComboBoxStateColorTable DroppedDown = new Office2007ComboBoxStateColorTable();
}
}