// *********************************************************************** // Assembly : HZH_Controls // Created : 2019-09-30 // // *********************************************************************** // // Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com // // // Blog: https://www.cnblogs.com/bfyx // GitHub:https://github.com/kwwwvagaa/NetWinformControl // gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git // // If you use this code, please keep this note. // *********************************************************************** using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; namespace HZH_Controls { /// /// Class TableColors. /// public class TableColors { /// /// The green /// private static Color green = ColorTranslator.FromHtml("#c2e7b0"); /// /// Gets the green. /// /// The green. public static Color Green { get { return green; } internal set { green = value; } } /// /// The blue /// private static Color blue = ColorTranslator.FromHtml("#a3d0fd"); /// /// Gets the blue. /// /// The blue. public static Color Blue { get { return blue; } internal set { blue = value; } } /// /// The red /// private static Color red = ColorTranslator.FromHtml("#fbc4c4"); /// /// Gets the red. /// /// The red. public static Color Red { get { return red; } internal set { red = value; } } /// /// The yellow /// private static Color yellow = ColorTranslator.FromHtml("#f5dab1"); /// /// Gets the yellow. /// /// The yellow. public static Color Yellow { get { return yellow; } internal set { yellow = value; } } /// /// The gray /// private static Color gray = ColorTranslator.FromHtml("#d3d4d6"); /// /// Gets the gray. /// /// The gray. public static Color Gray { get { return gray; } internal set { gray = value; } } } }