-
Notifications
You must be signed in to change notification settings - Fork 119
/
ChoAppTheme.cs
177 lines (157 loc) · 4.61 KB
/
ChoAppTheme.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
using MahApps.Metro;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Media;
namespace ChoEazyCopy
{
public class ChoAppTheme : INotifyPropertyChanged
{
public static readonly ChoAppTheme Instance = new ChoAppTheme();
private Accent _accent = ThemeManager.GetAccent("Blue");
private AppTheme _appTheme = ThemeManager.GetAppTheme("BaseDark");
private bool _isDarkMode = false;
public event PropertyChangedEventHandler PropertyChanged;
public void Refresh(Accent accent, AppTheme appTheme, bool isDarkMode)
{
_accent = accent;
_appTheme = appTheme;
_isDarkMode = isDarkMode;
RaisePropertyChanged(nameof(ControlBackgroundBrush));
RaisePropertyChanged(nameof(ControlForegroundBrush));
}
private void RaisePropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
public Brush TextBoxFocusBorderBrush
{
get
{
return (Brush)_appTheme.Resources["TextBoxFocusBorderBrush"];
}
}
public Brush ControlMouseOverBackgroundBrush
{
get
{
return (Brush)_appTheme.Resources["GrayHoverBrush"];
}
}
public Brush ControlBackgroundBrush
{
get
{
if (_isDarkMode)
return (Brush)_appTheme.Resources["BlackBrush"];
else
return (Brush)_appTheme.Resources["WhiteBrush"];
}
}
public Brush ControlForegroundBrush
{
get
{
if (_isDarkMode)
return new SolidColorBrush(Colors.White);
else
return new SolidColorBrush(Colors.Black);
if (!_isDarkMode)
return (Brush)_appTheme.Resources["BlackBrush"];
else
return (Brush)_appTheme.Resources["WhiteBrush"];
}
}
public Brush PGControlBackgroundBrush
{
get
{
//if (_isDarkMode)
// return (Brush)_appTheme.Resources["WhiteBrush"];
//else
return System.Windows.SystemColors.ControlLightBrush;
}
}
public Brush PGControlForegroundBrush
{
get
{
if (_isDarkMode)
return (Brush)_appTheme.Resources["WhiteBrush"];
else
return (Brush)_appTheme.Resources["BlackBrush"];
}
}
public Brush PGControlBorderBrush
{
get
{
return (Brush)_appTheme.Resources["ControlBorderBrush"];
}
}
public Brush ControlBorderBrush
{
get
{
return (Brush)_appTheme.Resources["ControlBorderBrush"];
}
}
public Brush WindowTitleColorBrush
{
get
{
return (Brush)_appTheme.Resources["WindowTitleColorBrush"];
}
}
public Brush ThemeForegroundBrush
{
get
{
return (Brush)_appTheme.Resources["BlackBrush"];
}
}
public Brush ThemeBackgroundBrush
{
get
{
return (Brush)_accent.Resources["AccentColorBrush"];
}
}
public Brush WindowTitleBrush
{
get
{
return (Brush)_appTheme.Resources["WindowTitleColorBrush"];
}
}
public Brush MouseOverBrush
{
get
{
return (Brush)_appTheme.Resources["ButtonMouseOverBorderBrush"];
}
}
public Brush TabControlBackgroundBrush
{
get
{
return (Brush)_accent.Resources["AccentColorBrush"];
}
}
public Brush TabControlForegroundBrush
{
get
{
//if (!_isDarkMode)
// return (Brush)_appTheme.Resources["BlackBrush"];
//else
return (Brush)_appTheme.Resources["WhiteBrush"];
}
}
}
}