-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathCalendarHelper.cs
More file actions
266 lines (217 loc) · 9.66 KB
/
CalendarHelper.cs
File metadata and controls
266 lines (217 loc) · 9.66 KB
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
using System;
using System.Globalization;
using System.Reflection;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Input;
using Calendar = System.Windows.Controls.Calendar;
namespace iNKORE.UI.WPF.Modern.Controls.Helpers
{
public static class CalendarHelper
{
#region AutoReleaseMouseCapture
public static bool GetAutoReleaseMouseCapture(Calendar calendar)
{
return (bool)calendar.GetValue(AutoReleaseMouseCaptureProperty);
}
public static void SetAutoReleaseMouseCapture(Calendar calendar, bool value)
{
calendar.SetValue(AutoReleaseMouseCaptureProperty, value);
}
public static readonly DependencyProperty AutoReleaseMouseCaptureProperty = DependencyProperty.RegisterAttached(
"AutoReleaseMouseCapture",
typeof(bool),
typeof(CalendarHelper),
new PropertyMetadata(OnAutoReleaseMouseCaptureChanged));
private static void OnAutoReleaseMouseCaptureChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
var calendar = (Calendar)d;
if ((bool)e.NewValue)
{
calendar.GotMouseCapture += OnCalendarGotMouseCapture;
}
else
{
calendar.GotMouseCapture -= OnCalendarGotMouseCapture;
}
}
#endregion
private static void OnCalendarGotMouseCapture(object sender, MouseEventArgs e)
{
var calendar = (Calendar)sender;
if (calendar.SelectionMode != CalendarSelectionMode.MultipleRange)
{
UIElement originalElement = e.OriginalSource as UIElement;
if (originalElement is CalendarDayButton || originalElement is CalendarItem)
{
originalElement.ReleaseMouseCapture();
}
}
}
#region CalendarKeyboardBehaviorOverride
public static bool GetKeyboardBehaviorOverride(Calendar calendar) =>
(bool)calendar.GetValue(KeyboardBehaviorOverrideProperty);
public static void SetKeyboardBehaviorOverride(Calendar calendar, bool value) =>
calendar.SetValue(KeyboardBehaviorOverrideProperty, value);
public static readonly DependencyProperty KeyboardBehaviorOverrideProperty =
DependencyProperty.RegisterAttached(
"KeyboardBehaviorOverride",
typeof(bool),
typeof(CalendarHelper),
new PropertyMetadata(OnKeyboardBehaviorOverrideChanged));
private static void OnKeyboardBehaviorOverrideChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
if (d is not Calendar calendar)
{
return;
}
if (e.NewValue is true)
{
calendar.PreviewKeyDown += OnHandleChangeFocusByKeys;
}
else
{
calendar.PreviewKeyDown -= OnHandleChangeFocusByKeys;
}
}
private static void OnHandleChangeFocusByKeys(object sender, KeyEventArgs e)
{
if (sender is not Calendar calendar ||
(Keyboard.Modifiers & ModifierKeys.Control) is ModifierKeys.Control)
{
return;
}
if ((Keyboard.Modifiers & ModifierKeys.Shift) is ModifierKeys.Shift && e.Key is not Key.Tab)
{
e.Handled = true;
return;
}
DateTime? focusTarget;
switch (calendar.DisplayMode)
{
case CalendarMode.Month:
int? change = e.Key switch
{
Key.Up => -7,
Key.Down => 7,
Key.Left => -1,
Key.Right => 1,
_ => null
};
if (change is null)
{
return;
}
var currentDate = typeof(Calendar).GetProperty("CurrentDate",
BindingFlags.NonPublic | BindingFlags.Instance)!
.GetValue(calendar)
as DateTime?;
focusTarget = GetNonBlackoutTarget(calendar, currentDate?.AddDays(change.Value));
break;
case CalendarMode.Year:
if (GetChangeForYearOrDecadeView(e.Key) is not { } monthChange)
{
return;
}
focusTarget = calendar.DisplayDate.AddMonths(monthChange);
break;
case CalendarMode.Decade:
if (GetChangeForYearOrDecadeView(e.Key) is not { } yearChange)
{
return;
}
focusTarget = calendar.DisplayDate.AddYears(yearChange);
break;
default:
return;
}
typeof(Calendar).GetMethod("MoveDisplayTo", BindingFlags.NonPublic | BindingFlags.Instance)!
.Invoke(calendar,
[focusTarget]);
e.Handled = true;
static int? GetChangeForYearOrDecadeView(Key key) => key switch
{
Key.Up => -4,
Key.Down => 4,
Key.Left => -1,
Key.Right => 1,
_ => null
};
static DateTime? GetNonBlackoutTarget(Calendar calendar, DateTime? targetFocus)
{
var blackoutDates =
typeof(Calendar).GetField("_blackoutDates", BindingFlags.NonPublic | BindingFlags.Instance)!
.GetValue(calendar)
as CalendarBlackoutDatesCollection;
var toSelectDate =
typeof(CalendarBlackoutDatesCollection).GetMethod("GetNonBlackoutDate",
BindingFlags.NonPublic | BindingFlags.Instance)!
.Invoke(blackoutDates, [targetFocus, -1]) as DateTime?;
return toSelectDate;
}
}
private static DateTime? GetCurrentFocusedDate() =>
(Keyboard.FocusedElement as FrameworkElement)?.DataContext as DateTime?;
#endregion
#region ContainsToday
public static CalendarMode? GetCalendarDisplayMode(DependencyObject obj) => (CalendarMode?)obj.GetValue(CalendarDisplayModeProperty);
public static void SetCalendarDisplayMode(DependencyObject obj, CalendarMode? value) => obj.SetValue(CalendarDisplayModeProperty, value);
public static readonly DependencyProperty CalendarDisplayModeProperty =
DependencyProperty.RegisterAttached(
"CalendarDisplayMode",
typeof(CalendarMode?),
typeof(CalendarHelper),
new PropertyMetadata(null, OnContainsTodayNeedsUpdate));
public static object GetContextDate(DependencyObject obj) => obj.GetValue(ContextDateProperty);
public static void SetContextDate(DependencyObject obj, object value) => obj.SetValue(ContextDateProperty, value);
public static readonly DependencyProperty ContextDateProperty =
DependencyProperty.RegisterAttached(
"ContextDate",
typeof(object),
typeof(CalendarHelper),
new PropertyMetadata(null, OnContainsTodayNeedsUpdate));
public static bool GetIsContainsTodayActive(DependencyObject obj) => (bool)obj.GetValue(IsContainsTodayActiveProperty);
public static void SetIsContainsTodayActive(DependencyObject obj, bool value) => obj.SetValue(IsContainsTodayActiveProperty, value);
public static readonly DependencyProperty IsContainsTodayActiveProperty =
DependencyProperty.RegisterAttached(
"IsContainsTodayActive",
typeof(bool),
typeof(CalendarHelper),
new PropertyMetadata(true, OnContainsTodayNeedsUpdate));
private static void OnContainsTodayNeedsUpdate(DependencyObject d, DependencyPropertyChangedEventArgs e)
{
UpdateContainsTodayActive(d);
}
private static void UpdateContainsTodayActive(DependencyObject d)
{
var mode = GetCalendarDisplayMode(d);
var contextDate = GetContextDate(d) as DateTime?;
if (!mode.HasValue || !contextDate.HasValue)
{
SetContainsToday(d, false);
return;
}
var containsTodayActive = mode.Value switch
{
CalendarMode.Year => contextDate.Value.Year == DateTime.Today.Year &&
contextDate.Value.Month == DateTime.Today.Month,
CalendarMode.Decade => contextDate.Value.Year == DateTime.Today.Year,
_ => false
};
SetContainsToday(d, containsTodayActive);
}
public static bool GetContainsToday(DependencyObject obj) =>
(bool)obj.GetValue(ContainsTodayProperty);
public static void SetContainsToday(DependencyObject obj, bool value) =>
obj.SetValue(ContainsTodayProperty, value);
public static readonly DependencyProperty ContainsTodayProperty =
DependencyProperty.RegisterAttached(
"ContainsToday",
typeof(bool),
typeof(CalendarHelper),
new PropertyMetadata(false));
#endregion
}
}