2017-10-04 02:44:54 +00:00
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
|
|
|
|
namespace ShiftOS.Engine.WindowManager
|
|
|
|
|
{
|
2017-10-14 15:27:27 +00:00
|
|
|
|
public abstract class ShiftSkinData
|
2017-10-04 02:44:54 +00:00
|
|
|
|
{
|
|
|
|
|
// ColorData
|
2017-10-14 15:27:27 +00:00
|
|
|
|
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;
|
2017-10-15 03:45:59 +00:00
|
|
|
|
public static Color btnCloseHoverColor = Color.Empty;
|
|
|
|
|
public static Color btnMaxHoverColor = Color.Empty;
|
|
|
|
|
public static Color btnMinHoverColor = Color.Empty;
|
2017-10-14 15:27:27 +00:00
|
|
|
|
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;
|
2017-10-04 02:44:54 +00:00
|
|
|
|
}
|
|
|
|
|
}
|