2017-10-04 02:44:54 +00:00
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
|
|
namespace ShiftOS.Engine.WindowManager
|
|
|
|
|
{
|
2017-11-05 23:47:46 +00:00
|
|
|
|
public abstract class ShiftSkinData
|
|
|
|
|
{
|
|
|
|
|
// ColorData
|
|
|
|
|
public static Color LeftTopCornerColor = Color.Empty;
|
|
|
|
|
public static Color TitleBarColor = Color.Empty;
|
|
|
|
|
public static Color RightTopCornerColor = Color.Empty;
|
|
|
|
|
public static Color BtnCloseColor = Color.Empty;
|
|
|
|
|
public static Color BtnMaxColor = Color.Empty;
|
|
|
|
|
public static Color BtnMinColor = Color.Empty;
|
|
|
|
|
public static Color BtnCloseHoverColor = Color.Empty;
|
|
|
|
|
public static Color BtnMaxHoverColor = Color.Empty;
|
|
|
|
|
public static Color BtnMinHoverColor = Color.Empty;
|
|
|
|
|
public static Color LeftSideColor = Color.Empty;
|
|
|
|
|
public static Color RightSideColor = Color.Empty;
|
|
|
|
|
public static Color LeftBottomCornerColor = Color.Empty;
|
|
|
|
|
public static Color BottomSideColor = Color.Empty;
|
|
|
|
|
public static Color RightBottomCornerColor = Color.Empty;
|
|
|
|
|
}
|
|
|
|
|
}
|