using System;
using System.Text;
namespace DevComponents.DotNetBar.Rendering
{
///
/// Represents color table for CrumbBarItemView.
///
public class CrumbBarItemViewColorTable
{
///
/// Gets or sets the default state color table.
///
public CrumbBarItemViewStateColorTable Default = null;
///
/// Gets or sets active mouse over color table.
///
public CrumbBarItemViewStateColorTable MouseOver = null;
///
/// Gets or sets inactive part mouse over color table.
///
public CrumbBarItemViewStateColorTable MouseOverInactive = null;
///
/// Gets or sets the pressed color table.
///
public CrumbBarItemViewStateColorTable Pressed = null;
}
}