Files

18 lines
585 B
C#

using System.Drawing;
namespace AdvertsingProfitControl
{
/// <summary>
/// Defines the colors to be used for the rows on the DataGridViews based on their state.
/// </summary>
public static class ApplicationColors
{
public static Color EditingSaved = Color.ForestGreen;
public static Color PendingEdit = Color.Yellow;
public static Color RowError = Color.Red;
public static Color HeaderRow = Color.LightGray;
public static Color MemberRow = Color.LightBlue;
public static Color AdSpecial = Color.Silver;
}
}