67 lines
1.6 KiB
C#
67 lines
1.6 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Drawing;
|
|||
|
|
|
|||
|
|
namespace WMS.Ctrl
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 颜色类型
|
|||
|
|
/// </summary>
|
|||
|
|
public struct ColorCustom
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 返回HQL语句
|
|||
|
|
/// </summary>
|
|||
|
|
public static readonly Color SelectedRow = Color.FromArgb(200, 226, 252);
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 已审核:1
|
|||
|
|
/// </summary>
|
|||
|
|
public static readonly Color Verify = System.Drawing.Color.Lime;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 审核未执行:2
|
|||
|
|
/// </summary>
|
|||
|
|
public static readonly Color UnExecute = System.Drawing.Color.Cyan;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 审批中:3
|
|||
|
|
/// </summary>
|
|||
|
|
public static readonly Color Approve = System.Drawing.Color.LightCyan;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 未通过:4
|
|||
|
|
/// </summary>
|
|||
|
|
public static readonly Color UnPass = System.Drawing.Color.SandyBrown;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 通过:5
|
|||
|
|
/// </summary>
|
|||
|
|
public static readonly Color Pass = System.Drawing.Color.DeepSkyBlue;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 废除:6
|
|||
|
|
/// </summary>
|
|||
|
|
public static readonly Color Repeal = System.Drawing.Color.Gainsboro;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 驳回:7
|
|||
|
|
/// </summary>
|
|||
|
|
public static readonly Color ReWork = Color.PaleTurquoise;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 缺货:8
|
|||
|
|
/// </summary>
|
|||
|
|
public static readonly Color Shortage = Color.MistyRose;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 警示:9
|
|||
|
|
/// </summary>
|
|||
|
|
public static readonly Color Warning = Color.Red;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|