SourceCode/PROMS/DotNetBar Source Code/Rendering/Office2007WarningBoxColorTable.cs

89 lines
3.4 KiB
C#

using System;
using System.Text;
using System.Drawing;
namespace DevComponents.DotNetBar.Rendering
{
/// <summary>
/// Defines colors for the WarningBox control.
/// </summary>
public class Office2007WarningBoxColorTable
{
#region Default
/// <summary>
/// Gets or sets the background color of WarningBox control.
/// </summary>
public Color BackColor = Color.FromArgb(255, 196, 219, 249);
/// <summary>
/// Gets or sets the border color of the warning panel.
/// </summary>
public Color WarningBorderColor = Color.FromArgb(255, 162, 188, 213);
/// <summary>
/// Gets or sets the back color of the warning panel.
/// </summary>
public Color WarningBackColor1 = Color.FromArgb(255, 255, 255, 255);
/// <summary>
/// Gets or sets the end gradient back color of the warning panel.
/// </summary>
public Color WarningBackColor2 = Color.FromArgb(255, 229, 244, 254);
#endregion
#region Green
/// <summary>
/// Gets or sets the background color of WarningBox control.
/// </summary>
public Color GreenBackColor = ColorScheme.GetColor(0xC6E5B8);
/// <summary>
/// Gets or sets the border color of the warning panel.
/// </summary>
public Color GreenWarningBorderColor = ColorScheme.GetColor(0x72A45A);
/// <summary>
/// Gets or sets the back color of the warning panel.
/// </summary>
public Color GreenWarningBackColor1 = ColorScheme.GetColor(0xC3D9B9);
/// <summary>
/// Gets or sets the end gradient back color of the warning panel.
/// </summary>
public Color GreenWarningBackColor2 = ColorScheme.GetColor(0x9CBF8B);
#endregion
#region Yellow
/// <summary>
/// Gets or sets the background color of WarningBox control.
/// </summary>
public Color YellowBackColor = ColorScheme.GetColor(0xFFE69F);
/// <summary>
/// Gets or sets the border color of the warning panel.
/// </summary>
public Color YellowWarningBorderColor = ColorScheme.GetColor(0xEE9311);
/// <summary>
/// Gets or sets the back color of the warning panel.
/// </summary>
public Color YellowWarningBackColor1 = ColorScheme.GetColor(0xFFEBB6);
/// <summary>
/// Gets or sets the end gradient back color of the warning panel.
/// </summary>
public Color YellowWarningBackColor2 = ColorScheme.GetColor(0xFFDF86);
#endregion
#region Red
/// <summary>
/// Gets or sets the background color of WarningBox control.
/// </summary>
public Color RedBackColor = ColorScheme.GetColor(0xDDACAC);
/// <summary>
/// Gets or sets the border color of the warning panel.
/// </summary>
public Color RedWarningBorderColor = ColorScheme.GetColor(0xC16969);
/// <summary>
/// Gets or sets the back color of the warning panel.
/// </summary>
public Color RedWarningBackColor1 = ColorScheme.GetColor(0xE5BFBF);
/// <summary>
/// Gets or sets the end gradient back color of the warning panel.
/// </summary>
public Color RedWarningBackColor2 = ColorScheme.GetColor(0xD39696);
#endregion
}
}