forked from xamarin/Xamarin.Forms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatePickerRenderer.cs
186 lines (157 loc) · 5.3 KB
/
DatePickerRenderer.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
using System;
using System.ComponentModel;
using System.Linq;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media;
using Xamarin.Forms.Internals;
namespace Xamarin.Forms.Platform.UWP
{
public class DatePickerRenderer : ViewRenderer<DatePicker, Windows.UI.Xaml.Controls.DatePicker>
{
Brush _defaultBrush;
bool _fontApplied;
FontFamily _defaultFontFamily;
protected override void Dispose(bool disposing)
{
if (disposing && Control != null)
{
Control.DateChanged -= OnControlDateChanged;
Control.Loaded -= ControlOnLoaded;
}
base.Dispose(disposing);
}
protected override void OnElementChanged(ElementChangedEventArgs<DatePicker> e)
{
if (e.NewElement != null)
{
if (Control == null)
{
var picker = new Windows.UI.Xaml.Controls.DatePicker();
SetNativeControl(picker);
Control.Loaded += ControlOnLoaded;
Control.DateChanged += OnControlDateChanged;
}
else
{
WireUpFormsVsm();
}
UpdateMinimumDate();
UpdateMaximumDate();
UpdateDate(e.NewElement.Date);
UpdateFlowDirection();
}
base.OnElementChanged(e);
}
void ControlOnLoaded(object sender, RoutedEventArgs routedEventArgs)
{
WireUpFormsVsm();
// The defaults from the control template won't be available
// right away; we have to wait until after the template has been applied
_defaultBrush = Control.Foreground;
_defaultFontFamily = Control.FontFamily;
UpdateFont();
UpdateTextColor();
}
void WireUpFormsVsm()
{
if (!Element.UseFormsVsm())
{
return;
}
InterceptVisualStateManager.Hook(Control.GetFirstDescendant<StackPanel>(), Control, Element);
// We also have to intercept the VSM changes on the DatePicker's button
var button = Control.GetDescendantsByName<Windows.UI.Xaml.Controls.Button>("FlyoutButton").FirstOrDefault();
InterceptVisualStateManager.Hook(button.GetFirstDescendant<Windows.UI.Xaml.Controls.Grid>(), button, Element);
}
protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
{
base.OnElementPropertyChanged(sender, e);
if (e.PropertyName == DatePicker.DateProperty.PropertyName)
UpdateDate(Element.Date);
else if (e.PropertyName == DatePicker.MaximumDateProperty.PropertyName)
UpdateMaximumDate();
else if (e.PropertyName == DatePicker.MinimumDateProperty.PropertyName)
UpdateMinimumDate();
else if (e.PropertyName == DatePicker.TextColorProperty.PropertyName)
UpdateTextColor();
else if (e.PropertyName == VisualElement.FlowDirectionProperty.PropertyName)
UpdateFlowDirection();
else if (e.PropertyName == DatePicker.FontAttributesProperty.PropertyName || e.PropertyName == DatePicker.FontFamilyProperty.PropertyName || e.PropertyName == DatePicker.FontSizeProperty.PropertyName)
UpdateFont();
}
protected override bool PreventGestureBubbling { get; set; } = true;
void OnControlDateChanged(object sender, DatePickerValueChangedEventArgs e)
{
if (Element == null)
return;
if (Element.Date.CompareTo(e.NewDate.Date) != 0)
{
Element.Date = e.NewDate.Date;
((IVisualElementController)Element).InvalidateMeasure(InvalidationTrigger.SizeRequestChanged);
}
}
void UpdateDate(DateTime date)
{
if (Control != null)
Control.Date = new DateTimeOffset(new DateTime(date.Ticks, DateTimeKind.Unspecified));
}
void UpdateFlowDirection()
{
Control.UpdateFlowDirection(Element);
}
void UpdateFont()
{
if (Control == null)
return;
DatePicker datePicker = Element;
if (datePicker == null)
return;
bool datePickerIsDefault = datePicker.FontFamily == null && datePicker.FontSize == Device.GetNamedSize(NamedSize.Default, typeof(DatePicker), true) && datePicker.FontAttributes == FontAttributes.None;
if (datePickerIsDefault && !_fontApplied)
return;
if (datePickerIsDefault)
{
// ReSharper disable AccessToStaticMemberViaDerivedType
Control.ClearValue(ComboBox.FontStyleProperty);
Control.ClearValue(ComboBox.FontSizeProperty);
Control.ClearValue(ComboBox.FontFamilyProperty);
Control.ClearValue(ComboBox.FontWeightProperty);
Control.ClearValue(ComboBox.FontStretchProperty);
// ReSharper restore AccessToStaticMemberViaDerivedType
}
else
{
Control.ApplyFont(datePicker);
}
_fontApplied = true;
}
void UpdateMaximumDate()
{
if (Element != null && Control != null)
Control.MaxYear = new DateTimeOffset(new DateTime(Element.MaximumDate.Ticks, DateTimeKind.Unspecified));
}
void UpdateMinimumDate()
{
DateTime mindate = Element.MinimumDate;
try
{
if (Element != null && Control != null)
Control.MinYear = new DateTimeOffset(new DateTime(Element.MinimumDate.Ticks, DateTimeKind.Unspecified));
}
catch (ArgumentOutOfRangeException)
{
// This will be thrown when mindate equals DateTime.MinValue and the UTC offset is positive
// because the resulting DateTimeOffset.UtcDateTime will be out of range. In that case let's
// specify the Kind as UTC so there is no offset.
mindate = DateTime.SpecifyKind(mindate, DateTimeKind.Utc);
Control.MinYear = new DateTimeOffset(mindate);
}
}
void UpdateTextColor()
{
Color color = Element.TextColor;
Control.Foreground = color.IsDefault ? (_defaultBrush ?? color.ToBrush()) : color.ToBrush();
}
}
}