-
Notifications
You must be signed in to change notification settings - Fork 0
/
FiveRangeCircularProgressBar.xaml.vb
260 lines (197 loc) · 10.2 KB
/
FiveRangeCircularProgressBar.xaml.vb
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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
Imports System.Windows
Imports System.Windows.Controls
Imports System.Windows.Media
Namespace CircularProgressBar.Controls
Public Partial Class FiveRangeCircularProgressBar
Inherits UserControl
Public Sub New()
Me.InitializeComponent()
End Sub
Public Property MinValue As Double
Get
Return CDbl(GetValue(MinValueProperty))
End Get
Set(ByVal value As Double)
SetValue(MinValueProperty, value)
End Set
End Property
Public Shared ReadOnly MinValueProperty As DependencyProperty = DependencyProperty.Register("MinValue", GetType(Double), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(0R))
Public Property MaxValue As Double
Get
Return CDbl(GetValue(MaxValueProperty))
End Get
Set(ByVal value As Double)
SetValue(MaxValueProperty, value)
End Set
End Property
Public Shared ReadOnly MaxValueProperty As DependencyProperty = DependencyProperty.Register("MaxValue", GetType(Double), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(100R))
Public Property Thickness As Integer
Get
Return CInt(GetValue(ThicknessProperty))
End Get
Set(ByVal value As Integer)
SetValue(ThicknessProperty, value)
End Set
End Property
Public Shared ReadOnly ThicknessProperty As DependencyProperty = DependencyProperty.Register("Thickness", GetType(Integer), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(15))
Public Property ProgressThickness As Integer
Get
Return CInt(GetValue(ProgressThicknessProperty))
End Get
Set(ByVal value As Integer)
SetValue(ProgressThicknessProperty, value)
End Set
End Property
Public Shared ReadOnly ProgressThicknessProperty As DependencyProperty = DependencyProperty.Register("ProgressThickness", GetType(Integer), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(15))
Public Property TextBrush As Brush
Get
Return CType(GetValue(TextBrushProperty), Brush)
End Get
Set(ByVal value As Brush)
SetValue(TextBrushProperty, value)
End Set
End Property
Public Shared ReadOnly TextBrushProperty As DependencyProperty = DependencyProperty.Register("TextBrush", GetType(Brush), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(Brushes.Gray))
'#Region "Range Brushes"
Public Property Range1Brush As Brush
Get
Return CType(GetValue(Range1BrushProperty), Brush)
End Get
Set(ByVal value As Brush)
SetValue(Range1BrushProperty, value)
End Set
End Property
Public Shared ReadOnly Range1BrushProperty As DependencyProperty = DependencyProperty.Register("Range1Brush", GetType(Brush), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(New SolidColorBrush(CType(ColorConverter.ConvertFromString("#FFC106"), Color))))
Public Property Range2Brush As Brush
Get
Return CType(GetValue(Range2BrushProperty), Brush)
End Get
Set(ByVal value As Brush)
SetValue(Range2BrushProperty, value)
End Set
End Property
Public Shared ReadOnly Range2BrushProperty As DependencyProperty = DependencyProperty.Register("Range2Brush", GetType(Brush), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(New SolidColorBrush(CType(ColorConverter.ConvertFromString("#CCDC3B"), Color))))
Public Property Range3Brush As Brush
Get
Return CType(GetValue(Range3BrushProperty), Brush)
End Get
Set(ByVal value As Brush)
SetValue(Range3BrushProperty, value)
End Set
End Property
Public Shared ReadOnly Range3BrushProperty As DependencyProperty = DependencyProperty.Register("Range3Brush", GetType(Brush), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(New SolidColorBrush(CType(ColorConverter.ConvertFromString("#FF5E01"), Color))))
Public Property Range4Brush As Brush
Get
Return CType(GetValue(Range4BrushProperty), Brush)
End Get
Set(ByVal value As Brush)
SetValue(Range4BrushProperty, value)
End Set
End Property
Public Shared ReadOnly Range4BrushProperty As DependencyProperty = DependencyProperty.Register("Range4Brush", GetType(Brush), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(New SolidColorBrush(CType(ColorConverter.ConvertFromString("#29B6F6"), Color))))
Public Property Range5Brush As Brush
Get
Return CType(GetValue(Range5BrushProperty), Brush)
End Get
Set(ByVal value As Brush)
SetValue(Range5BrushProperty, value)
End Set
End Property
Public Shared ReadOnly Range5BrushProperty As DependencyProperty = DependencyProperty.Register("Range5Brush", GetType(Brush), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(New SolidColorBrush(CType(ColorConverter.ConvertFromString("#EF68B9"), Color))))
'#End Region ' Range Brushes
'#Region "Range Values"
Public Property Range1Value As Double
Get
Return CDbl(GetValue(Range1ValueProperty))
End Get
Set(ByVal value As Double)
SetValue(Range1ValueProperty, value)
End Set
End Property
Public Shared ReadOnly Range1ValueProperty As DependencyProperty = DependencyProperty.Register("Range1Value", GetType(Double), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(0R))
Public Property Range2Value As Double
Get
Return CDbl(GetValue(Range2ValueProperty))
End Get
Set(ByVal value As Double)
SetValue(Range2ValueProperty, value)
End Set
End Property
Public Shared ReadOnly Range2ValueProperty As DependencyProperty = DependencyProperty.Register("Range2Value", GetType(Double), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(0R))
Public Property Range3Value As Double
Get
Return CDbl(GetValue(Range3ValueProperty))
End Get
Set(ByVal value As Double)
SetValue(Range3ValueProperty, value)
End Set
End Property
Public Shared ReadOnly Range3ValueProperty As DependencyProperty = DependencyProperty.Register("Range3Value", GetType(Double), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(0R))
Public Property Range4Value As Double
Get
Return CDbl(GetValue(Range4ValueProperty))
End Get
Set(ByVal value As Double)
SetValue(Range4ValueProperty, value)
End Set
End Property
Public Shared ReadOnly Range4ValueProperty As DependencyProperty = DependencyProperty.Register("Range4Value", GetType(Double), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(0R))
Public Property Range5Value As Double
Get
Return CDbl(GetValue(Range5ValueProperty))
End Get
Set(ByVal value As Double)
SetValue(Range5ValueProperty, value)
End Set
End Property
Public Shared ReadOnly Range5ValueProperty As DependencyProperty = DependencyProperty.Register("Range5Value", GetType(Double), GetType(FiveRangeCircularProgressBar), New PropertyMetadata(0R))
'#End Region ' Range Values
'#Region "Range Labels"
Public Property Range1Label As String
Get
Return CStr(GetValue(Range1LabelProperty))
End Get
Set(ByVal value As String)
SetValue(Range1LabelProperty, value)
End Set
End Property
Public Shared ReadOnly Range1LabelProperty As DependencyProperty = DependencyProperty.Register("Range1Label", GetType(String), GetType(FiveRangeCircularProgressBar), New PropertyMetadata("Range1"))
Public Property Range2Label As String
Get
Return CStr(GetValue(Range2LabelProperty))
End Get
Set(ByVal value As String)
SetValue(Range2LabelProperty, value)
End Set
End Property
Public Shared ReadOnly Range2LabelProperty As DependencyProperty = DependencyProperty.Register("Range2Label", GetType(String), GetType(FiveRangeCircularProgressBar), New PropertyMetadata("Range2"))
Public Property Range3Label As String
Get
Return CStr(GetValue(Range3LabelProperty))
End Get
Set(ByVal value As String)
SetValue(Range3LabelProperty, value)
End Set
End Property
Public Shared ReadOnly Range3LabelProperty As DependencyProperty = DependencyProperty.Register("Range3Label", GetType(String), GetType(FiveRangeCircularProgressBar), New PropertyMetadata("Range3"))
Public Property Range4Label As String
Get
Return CStr(GetValue(Range4LabelProperty))
End Get
Set(ByVal value As String)
SetValue(Range4LabelProperty, value)
End Set
End Property
Public Shared ReadOnly Range4LabelProperty As DependencyProperty = DependencyProperty.Register("Range4Label", GetType(String), GetType(FiveRangeCircularProgressBar), New PropertyMetadata("Range4"))
Public Property Range5Label As String
Get
Return CStr(GetValue(Range5LabelProperty))
End Get
Set(ByVal value As String)
SetValue(Range5LabelProperty, value)
End Set
End Property
Public Shared ReadOnly Range5LabelProperty As DependencyProperty = DependencyProperty.Register("Range5Label", GetType(String), GetType(FiveRangeCircularProgressBar), New PropertyMetadata("Range5"))
'#End Region ' Range Labels
End Class
End Namespace