diff options
| author | Alex-TIMEHACK <[email protected]> | 2017-10-14 16:31:58 +0100 |
|---|---|---|
| committer | Alex-TIMEHACK <[email protected]> | 2017-10-14 16:31:58 +0100 |
| commit | 5d1004015d797892181b1181a6772bb358871f83 (patch) | |
| tree | 8346a1cd8d2539cf84841c6318e35d734f96c88f /ShiftOS.Engine/WindowManager/ShiftSkinData.cs | |
| parent | 59a7eabcbe37d44a1cd4a9b742ce99f423a42ff7 (diff) | |
| parent | db714a32b91ae577f256347c71137a7a41dfca37 (diff) | |
| download | shiftos-rewind-5d1004015d797892181b1181a6772bb358871f83.tar.gz shiftos-rewind-5d1004015d797892181b1181a6772bb358871f83.tar.bz2 shiftos-rewind-5d1004015d797892181b1181a6772bb358871f83.zip | |
Updated fork
Conflicts:
.vs/ShiftOS/v15/sqlite3/storage.ide
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; + } +} |
