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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
using Tango.SharedUI.Controls;
namespace Tango.Touch.Controls
{
public class TouchNumericTextBox : TouchInput, IValueControl
{
private TextBox _text_box;
private bool _prevent_text_change;
private FastTextBlock _text_block;
private double _lastValue;
Regex regex_integer = new Regex(@"^-?[0-9]\d*(\d+)?$");
Regex regex_double = new Regex(@"^-?[0-9]\d*(\.\d+)?$");
public static readonly RoutedEvent ValueChangedEvent = EventManager.RegisterRoutedEvent("ValueChanged", RoutingStrategy.Bubble, typeof(DoubleValueChangedEventHandler), typeof(TouchNumericTextBox));
public event DoubleValueChangedEventHandler ValueChanged
{
add { AddHandler(ValueChangedEvent, value); }
remove { RemoveHandler(ValueChangedEvent, value); }
}
public static readonly RoutedEvent ValueChangedEndEvent = EventManager.RegisterRoutedEvent("ValueChangedEnd", RoutingStrategy.Bubble, typeof(DoubleValueChangedEventHandler), typeof(TouchNumericTextBox));
public event DoubleValueChangedEventHandler ValueChangedEnd
{
add { AddHandler(ValueChangedEndEvent, value); }
remove { RemoveHandler(ValueChangedEndEvent, value); }
}
public static readonly RoutedEvent TextGotFocusEvent = EventManager.RegisterRoutedEvent("TextGotFocus", RoutingStrategy.Bubble, typeof(DoubleValueChangedEventHandler), typeof(TouchNumericTextBox));
public event DoubleValueChangedEventHandler TextGotFocus
{
add { AddHandler(TextGotFocusEvent, value); }
remove { RemoveHandler(TextGotFocusEvent, value); }
}
public double Value
{
get { return (double)GetValue(ValueProperty); }
set { SetValue(ValueProperty, value); }
}
public static readonly DependencyProperty ValueProperty =
DependencyProperty.Register("Value", typeof(double), typeof(TouchNumericTextBox), new FrameworkPropertyMetadata(0.0, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault, (d, e) => (d as TouchNumericTextBox).OnValueChanged(), (d, e) => (d as TouchNumericTextBox).CoerceValue(d, e), false, UpdateSourceTrigger.Explicit));
public String Watermark
{
get { return (String)GetValue(WatermarkProperty); }
set { SetValue(WatermarkProperty, value); }
}
public static readonly DependencyProperty WatermarkProperty =
DependencyProperty.Register("Watermark", typeof(String), typeof(TouchNumericTextBox), new PropertyMetadata(null));
public bool DisplayWatermarkHint
{
get { return (bool)GetValue(DisplayWatermarkHintProperty); }
set { SetValue(DisplayWatermarkHintProperty, value); }
}
public static readonly DependencyProperty DisplayWatermarkHintProperty =
DependencyProperty.Register("DisplayWatermarkHint", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(false));
public bool HideUnderline
{
get { return (bool)GetValue(HideUnderlineProperty); }
set { SetValue(HideUnderlineProperty, value); }
}
public static readonly DependencyProperty HideUnderlineProperty =
DependencyProperty.Register("HideUnderline", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(false));
public String StringFormat
{
get { return (String)GetValue(StringFormatProperty); }
set { SetValue(StringFormatProperty, value); }
}
public static readonly DependencyProperty StringFormatProperty =
DependencyProperty.Register("StringFormat", typeof(String), typeof(TouchNumericTextBox), new PropertyMetadata(null));
public bool HasDecimalPoint
{
get { return (bool)GetValue(HasDecimalPointProperty); }
set { SetValue(HasDecimalPointProperty, value); }
}
public static readonly DependencyProperty HasDecimalPointProperty =
DependencyProperty.Register("HasDecimalPoint", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(false));
public double Minimum
{
get { return (double)GetValue(MinimumProperty); }
set { SetValue(MinimumProperty, value); }
}
public static readonly DependencyProperty MinimumProperty =
DependencyProperty.Register("Minimum", typeof(double), typeof(TouchNumericTextBox), new PropertyMetadata(0.0));
public double Maximum
{
get { return (double)GetValue(MaximumProperty); }
set { SetValue(MaximumProperty, value); }
}
public static readonly DependencyProperty MaximumProperty =
DependencyProperty.Register("Maximum", typeof(double), typeof(TouchNumericTextBox), new PropertyMetadata(null));
public double Step
{
get { return (double)GetValue(StepProperty); }
set { SetValue(StepProperty, value); }
}
public static readonly DependencyProperty StepProperty =
DependencyProperty.Register("Step", typeof(double), typeof(TouchNumericTextBox), new PropertyMetadata(null));
public double JoggingFactor
{
get { return (double)GetValue(JoggingFactorProperty); }
set { SetValue(JoggingFactorProperty, value); }
}
public static readonly DependencyProperty JoggingFactorProperty =
DependencyProperty.Register("JoggingFactor", typeof(double), typeof(TouchNumericTextBox), new PropertyMetadata(1.0));
public bool AutoCalculateJogStep
{
get { return (bool)GetValue(AutoCalculateJogStepProperty); }
set { SetValue(AutoCalculateJogStepProperty, value); }
}
public static readonly DependencyProperty AutoCalculateJogStepProperty =
DependencyProperty.Register("AutoCalculateJogStep", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(true));
public bool UpdateBindingOnlyWhenFocused
{
get { return (bool)GetValue(UpdateBindingOnlyWhenFocusedProperty); }
set { SetValue(UpdateBindingOnlyWhenFocusedProperty, value); }
}
public static readonly DependencyProperty UpdateBindingOnlyWhenFocusedProperty =
DependencyProperty.Register("UpdateBindingOnlyWhenFocused", typeof(bool), typeof(TouchNumericTextBox), new PropertyMetadata(false));
public Brush RippleBrush
{
get { return (Brush)GetValue(RippleBrushProperty); }
set { SetValue(RippleBrushProperty, value); }
}
public static readonly DependencyProperty RippleBrushProperty =
DependencyProperty.Register("RippleBrush", typeof(Brush), typeof(TouchNumericTextBox), new PropertyMetadata(new SolidColorBrush(Color.FromRgb(189,189,189)) { Opacity = 0.28 }));
public virtual bool HasError
{
get
{
return Validation.GetHasError(this);
}
}
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
_text_box = GetTemplateChild("PART_TextBox") as TextBox;
_text_block = GetTemplateChild("PART_TextDisplay") as FastTextBlock;
_text_box.PreviewTextInput += _text_box_PreviewTextInput;
_text_box.PreviewKeyDown += _text_box_PreviewKeyDown;
_text_box.LostFocus += _text_box_LostFocus;
_text_box.GotFocus += _text_box_GotFocus;
_text_box.TextChanged += _text_box_TextChanged;
Value = Value;
OnValueChanged();
}
private async void _text_box_GotFocus(object sender, RoutedEventArgs e)
{
await Task.Delay(50);
if (FocusSelectionMode == FocusSelectionMode.SelectAll)
{
_text_box.SelectAll();
}
else if (FocusSelectionMode == FocusSelectionMode.ScrollToEnd)
{
_text_box.CaretIndex = _text_box.Text.Length;
}
DoubleValueChangedEventArgs args = new DoubleValueChangedEventArgs(TextGotFocusEvent, this, Value);
RaiseEvent(args);
}
private object CoerceValue(DependencyObject d, object e)
{
double value = (double)e;
if (_text_box != null) //Min and max not being set yet...
{
if (!HasDecimalPoint)
{
value = Math.Round(value, 0);
}
if (Step > 0)
{
int coef = (int)((value + Step - 1) / Step);
value = coef * Step;
}
if(Minimum > 0 && value < Minimum)
{
value = Minimum;
}
if (Maximum > Minimum)
{
if (value < Minimum)
{
value = Minimum;
}
else if (value > Maximum)
{
value = Maximum;
}
}
}
return value;
}
private void _text_box_LostFocus(object sender, RoutedEventArgs e)
{
double d = 0.0;
if (double.TryParse(_text_box.Text, out d))
{
Value = d;
_text_box.Text = Value.ToString();
}
_text_block.Text = Value.ToString(StringFormat);
BindingExpression b = GetBindingExpression(ValueProperty);
if (b != null)
{
b.UpdateSource();
}
DoubleValueChangedEventArgs args = new DoubleValueChangedEventArgs(ValueChangedEvent, this, Value);
RaiseEvent(args);
DoubleValueChangedEventArgs args2 = new DoubleValueChangedEventArgs(ValueChangedEndEvent, this, Value);
RaiseEvent(args2);
}
private void _text_box_PreviewKeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Space)
{
e.Handled = true;
}
}
private void OnValueChanged()
{
if (_text_box != null && !_prevent_text_change)
{
_prevent_text_change = true;
if (StringFormat != null)
{
_text_box.Text = Value.ToString(StringFormat);
}
else
{
_text_box.Text = Value.ToString();
}
_text_block.Text = _text_box.Text;
_prevent_text_change = false;
}
if (Value != _lastValue)
{
BindingExpression b = GetBindingExpression(ValueProperty);
if (b != null)
{
b.UpdateSource();
}
_lastValue = Value;
if (!UpdateBindingOnlyWhenFocused || (_text_box != null && _text_box.IsKeyboardFocused))
{
DoubleValueChangedEventArgs args = new DoubleValueChangedEventArgs(ValueChangedEvent, this, Value);
RaiseEvent(args);
}
}
}
private void _text_box_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
if (e.Text == "." && _text_box.Text.Contains('.'))
{
e.Handled = true;
return;
}
else if(e.Text == "." && HasDecimalPoint)
{
e.Handled = false;
return;
}
if (e.Text == "-" && !_text_box.Text.Contains("-"))
{
e.Handled = false;
return;
}
else if (e.Text == "-")
{
e.Handled = true;
return;
}
if (HasDecimalPoint)
{
e.Handled = !regex_double.IsMatch(e.Text);
}
else
{
e.Handled = !regex_integer.IsMatch(e.Text);
}
}
private void _text_box_TextChanged(object sender, TextChangedEventArgs e)
{
if (_prevent_text_change) return;
double d = 0.0;
if (double.TryParse(_text_box.Text, out d))
{
_prevent_text_change = true;
Value = d;
_prevent_text_change = false;
}
}
static TouchNumericTextBox()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(TouchNumericTextBox), new FrameworkPropertyMetadata(typeof(TouchNumericTextBox)));
}
}
}
|