diff options
Diffstat (limited to 'ShiftOS.Engine/WindowManager/ShiftSkinData.cs')
| -rw-r--r-- | ShiftOS.Engine/WindowManager/ShiftSkinData.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ShiftOS.Engine/WindowManager/ShiftSkinData.cs b/ShiftOS.Engine/WindowManager/ShiftSkinData.cs new file mode 100644 index 0000000..2c03123 --- /dev/null +++ b/ShiftOS.Engine/WindowManager/ShiftSkinData.cs @@ -0,0 +1,20 @@ +using System.Drawing; + +namespace ShiftOS.Engine.WindowManager +{ + 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 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; + } +} |
