From 60af0b389dfd98f05278f3259485d1d2349d2012 Mon Sep 17 00:00:00 2001 From: lempamo Date: Fri, 8 Sep 2017 11:03:22 -0400 Subject: WIP ClassicTextbox --- Histacom2.Engine/Theme.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'Histacom2.Engine/Theme.cs') diff --git a/Histacom2.Engine/Theme.cs b/Histacom2.Engine/Theme.cs index 5b5ae50..8385062 100644 --- a/Histacom2.Engine/Theme.cs +++ b/Histacom2.Engine/Theme.cs @@ -24,6 +24,8 @@ namespace Histacom2.Engine public Font buttonFont { get; set; } + public Color windowColor { get; set; } + public Color activeTitleBarColor { get; set; } public Color activeTitleTextColor { get; set; } public Color inactiveTitleBarColor { get; set; } @@ -52,6 +54,8 @@ namespace Histacom2.Engine buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular); + windowColor = Color.White; + activeTitleBarColor = Color.Navy; activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.Gray; @@ -80,6 +84,8 @@ namespace Histacom2.Engine buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Regular); + windowColor = Color.White; + activeTitleBarColor = Color.Navy; activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.Gray; @@ -108,6 +114,8 @@ namespace Histacom2.Engine buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Bold); + windowColor = Color.FromArgb(184, 184, 184); + activeTitleBarColor = Color.Teal; activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.FromArgb(72, 72, 72); @@ -132,6 +140,8 @@ namespace Histacom2.Engine buttonFont = new Font("Microsoft Sans Serif", 8.25F, FontStyle.Bold); + windowColor = Color.White; + activeTitleBarColor = Color.FromArgb(224, 0, 0); activeTitleTextColor = Color.White; inactiveTitleBarColor = Color.FromArgb(96, 168, 128); -- cgit v1.2.3