forked from Kinnara/ModernWpf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleTimePicker.cs
416 lines (349 loc) · 14.1 KB
/
SimpleTimePicker.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
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
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
using MahApps.Metro.Controls;
using ModernWpf.Controls.Primitives;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Markup;
namespace ModernWpf.MahApps.Controls
{
/// <summary>
/// Represents a control that allows a user to pick a time value.
/// </summary>
[ContentProperty(nameof(Header))]
public class SimpleTimePicker : TimePicker
{
private const string ElementPopup = "PART_Popup";
private const string ElementAmPmSwitcher = "PART_AmPmSwitcher";
private const string ElementHourPicker = "PART_HourPicker";
private const string ElementMinutePicker = "PART_MinutePicker";
private const string ElementSecondPicker = "PART_SecondPicker";
private Popup _popup;
private DateTimeComponentSelector _ampmSwitcher;
private DateTimeComponentSelector _hourInput;
private DateTimeComponentSelector _minuteInput;
private DateTimeComponentSelector _secondInput;
private TextBlock _hourTextBlock;
private TextBlock _minuteTextBlock;
private TextBlock _secondTextBlock;
private TextBlock _periodTextBlock;
private Button _acceptButton;
private Button _dismissButton;
static SimpleTimePicker()
{
DefaultStyleKeyProperty.OverrideMetadata(typeof(SimpleTimePicker), new FrameworkPropertyMetadata(typeof(SimpleTimePicker)));
SelectedDateTimeProperty.OverrideMetadata(typeof(SimpleTimePicker), new FrameworkPropertyMetadata(OnSelectedDateTimeChanged));
IsDropDownOpenProperty.OverrideMetadata(typeof(SimpleTimePicker), new FrameworkPropertyMetadata(OnIsDropDownOpenChanged));
}
/// <summary>
/// Initializes a new instance of the SimpleTimePicker class.
/// </summary>
public SimpleTimePicker()
{
}
#region UseSystemFocusVisuals
/// <summary>
/// Identifies the UseSystemFocusVisuals dependency property.
/// </summary>
public static readonly DependencyProperty UseSystemFocusVisualsProperty =
FocusVisualHelper.UseSystemFocusVisualsProperty.AddOwner(typeof(SimpleTimePicker));
/// <summary>
/// Gets or sets a value that indicates whether the control uses focus visuals that
/// are drawn by the system or those defined in the control template.
/// </summary>
/// <returns>
/// **true** if the control uses focus visuals drawn by the system; **false** if
/// the control uses focus visuals defined in the ControlTemplate. The default is
/// **false**; see Remarks.
/// </returns>
public bool UseSystemFocusVisuals
{
get => (bool)GetValue(UseSystemFocusVisualsProperty);
set => SetValue(UseSystemFocusVisualsProperty, value);
}
#endregion
#region CornerRadius
/// <summary>
/// Identifies the CornerRadius dependency property.
/// </summary>
public static readonly DependencyProperty CornerRadiusProperty =
ControlHelper.CornerRadiusProperty.AddOwner(typeof(SimpleTimePicker));
/// <summary>
/// Gets or sets the radius for the corners of the control's border.
/// </summary>
/// <returns>
/// The degree to which the corners are rounded, expressed as values of the CornerRadius
/// structure.
/// </returns>
public CornerRadius CornerRadius
{
get => (CornerRadius)GetValue(CornerRadiusProperty);
set => SetValue(CornerRadiusProperty, value);
}
#endregion
#region Header
/// <summary>
/// Identifies the Header dependency property.
/// </summary>
public static readonly DependencyProperty HeaderProperty =
ControlHelper.HeaderProperty.AddOwner(typeof(SimpleTimePicker));
/// <summary>
/// Gets or sets the content for the control's header.
/// </summary>
/// <returns>The content of the control's header. The default is **null**.</returns>
public object Header
{
get => GetValue(HeaderProperty);
set => SetValue(HeaderProperty, value);
}
#endregion
#region HeaderTemplate
/// <summary>
/// Identifies the HeaderTemplate dependency property.
/// </summary>
public static readonly DependencyProperty HeaderTemplateProperty =
ControlHelper.HeaderTemplateProperty.AddOwner(typeof(SimpleTimePicker));
/// <summary>
/// Gets or sets the DataTemplate used to display the content of the control's header.
/// </summary>
/// <returns>
/// The template that specifies the visualization of the header object. The default
/// is **null**.
/// </returns>
public DataTemplate HeaderTemplate
{
get => (DataTemplate)GetValue(HeaderTemplateProperty);
set => SetValue(HeaderTemplateProperty, value);
}
#endregion
#region HourPlaceholderText
public static readonly DependencyProperty HourPlaceholderTextProperty =
DependencyProperty.Register(
nameof(HourPlaceholderText),
typeof(string),
typeof(SimpleTimePicker),
new PropertyMetadata(string.Empty, OnPlaceholderTextChanged));
public string HourPlaceholderText
{
get => (string)GetValue(HourPlaceholderTextProperty);
set => SetValue(HourPlaceholderTextProperty, value);
}
#endregion
#region MinutePlaceholderText
public static readonly DependencyProperty MinutePlaceholderTextProperty =
DependencyProperty.Register(
nameof(MinutePlaceholderText),
typeof(string),
typeof(SimpleTimePicker),
new PropertyMetadata(string.Empty, OnPlaceholderTextChanged));
public string MinutePlaceholderText
{
get => (string)GetValue(MinutePlaceholderTextProperty);
set => SetValue(MinutePlaceholderTextProperty, value);
}
#endregion
#region SecondPlaceholderText
public static readonly DependencyProperty SecondPlaceholderTextProperty =
DependencyProperty.Register(
nameof(SecondPlaceholderText),
typeof(string),
typeof(SimpleTimePicker),
new PropertyMetadata(string.Empty, OnPlaceholderTextChanged));
public string SecondPlaceholderText
{
get => (string)GetValue(SecondPlaceholderTextProperty);
set => SetValue(SecondPlaceholderTextProperty, value);
}
#endregion
private IEnumerable<DateTimeComponentSelector> Selectors
{
get
{
yield return _hourInput;
yield return _minuteInput;
yield return _secondInput;
yield return _ampmSwitcher;
}
}
/// <summary>
/// Called when the Template's tree has been generated.
/// </summary>
public override void OnApplyTemplate()
{
UnSubscribeEvents();
_popup = GetTemplateChild(ElementPopup) as Popup;
_hourInput = GetTemplateChild(ElementHourPicker) as DateTimeComponentSelector;
_minuteInput = GetTemplateChild(ElementMinutePicker) as DateTimeComponentSelector;
_secondInput = GetTemplateChild(ElementSecondPicker) as DateTimeComponentSelector;
_ampmSwitcher = GetTemplateChild(ElementAmPmSwitcher) as DateTimeComponentSelector;
_hourTextBlock = GetTemplateChild("HourTextBlock") as TextBlock;
_minuteTextBlock = GetTemplateChild("MinuteTextBlock") as TextBlock;
_secondTextBlock = GetTemplateChild("SecondTextBlock") as TextBlock;
_periodTextBlock = GetTemplateChild("PeriodTextBlock") as TextBlock;
_acceptButton = GetTemplateChild("AcceptButton") as Button;
_dismissButton = GetTemplateChild("DismissButton") as Button;
base.OnApplyTemplate();
SubscribeEvents();
UpdateTextBlocks();
}
protected override void OnIsKeyboardFocusWithinChanged(DependencyPropertyChangedEventArgs e)
{
if ((bool)e.NewValue)
{
base.OnIsKeyboardFocusWithinChanged(e);
}
}
private void SubscribeEvents()
{
if (_popup != null)
{
_popup.Opened += OnPopupOpened;
}
if (_acceptButton != null)
{
_acceptButton.Click += OnAcceptButtonClick;
}
if (_dismissButton != null)
{
_dismissButton.Click += OnDismissButtonClick; ;
}
}
private void UnSubscribeEvents()
{
if (_popup != null)
{
_popup.Opened -= OnPopupOpened;
}
if (_acceptButton != null)
{
_acceptButton.Click -= OnAcceptButtonClick;
}
if (_dismissButton != null)
{
_dismissButton.Click -= OnDismissButtonClick; ;
}
}
protected override void ApplyCulture()
{
base.ApplyCulture();
if (_ampmSwitcher != null && _ampmSwitcher.Items.Count > 0)
{
for (int i = 0; i < DateTimeComponentSelector.PaddingItemsCount; i++)
{
_ampmSwitcher.Items.Insert(i, DateTimeComponentSelectorItemsConverter.StringPaddingItem);
}
for (int i = 0; i < DateTimeComponentSelector.PaddingItemsCount; i++)
{
_ampmSwitcher.Items.Add(DateTimeComponentSelectorItemsConverter.StringPaddingItem);
}
}
}
private static void OnSelectedDateTimeChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var timePicker = (SimpleTimePicker)d;
timePicker.UpdateTextBlocks();
}
private static void OnIsDropDownOpenChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
if (!(bool)e.NewValue)
{
var timePicker = (SimpleTimePicker)d;
if (timePicker.IsKeyboardFocusWithin)
{
timePicker.Focus();
}
}
}
private static void OnPlaceholderTextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
((SimpleTimePicker)d).UpdateTextBlocks();
}
private void SetHourPartValues(TimeSpan timeOfDay)
{
if (_hourInput != null)
{
if (IsMilitaryTime)
{
_ampmSwitcher.SelectedValue = timeOfDay.Hours < 12 ? SpecificCultureInfo.DateTimeFormat.AMDesignator : SpecificCultureInfo.DateTimeFormat.PMDesignator;
if (timeOfDay.Hours == 0 || timeOfDay.Hours == 12)
{
_hourInput.SelectedValue = 12;
}
else
{
_hourInput.SelectedValue = timeOfDay.Hours % 12;
}
}
else
{
_hourInput.SelectedValue = timeOfDay.Hours;
}
}
if (_minuteInput != null)
{
_minuteInput.SelectedValue = timeOfDay.Minutes;
}
if (_secondInput != null)
{
_secondInput.SelectedValue = timeOfDay.Seconds;
}
}
private void UpdateTextBlocks()
{
DateTime? selectedTime = SelectedDateTime;
if (_hourTextBlock != null)
{
_hourTextBlock.Text = selectedTime.HasValue ?
selectedTime.Value.ToString(IsMilitaryTime ? "%h" : "%H", SpecificCultureInfo) :
HourPlaceholderText.DefaultIfNullOrEmpty(Strings.TimePickerHour);
}
if (_minuteTextBlock != null)
{
_minuteTextBlock.Text = selectedTime.HasValue ?
selectedTime.Value.ToString("mm", SpecificCultureInfo) :
MinutePlaceholderText.DefaultIfNullOrEmpty(Strings.TimePickerMinute);
}
if (_secondTextBlock != null)
{
_secondTextBlock.Text = selectedTime.HasValue ?
selectedTime.Value.ToString("ss", SpecificCultureInfo) :
SecondPlaceholderText.DefaultIfNullOrEmpty(Strings.TimePickerSecond);
}
if (_periodTextBlock != null)
{
_periodTextBlock.Text = selectedTime.HasValue ?
selectedTime.Value.ToString("tt", CultureInfo.InvariantCulture) :
SpecificCultureInfo.DateTimeFormat.AMDesignator;
}
}
private void OnPopupOpened(object sender, EventArgs e)
{
SetHourPartValues(SelectedDateTime.GetValueOrDefault().TimeOfDay);
var firstVisibleSelector = Selectors.FirstOrDefault(s => s.Visibility == Visibility.Visible);
firstVisibleSelector?.Focus();
}
private void ClosePopup()
{
SetCurrentValue(IsDropDownOpenProperty, false);
if (_popup != null && _popup.IsOpen)
{
_popup.IsOpen = false;
}
}
private void OnAcceptButtonClick(object sender, RoutedEventArgs e)
{
foreach (var selector in Selectors)
{
selector.RaiseDeferredSelectionChanged();
}
ClosePopup();
}
private void OnDismissButtonClick(object sender, RoutedEventArgs e)
{
ClosePopup();
}
}
}