We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80d1ae4 commit a2b5bd1Copy full SHA for a2b5bd1
src/Controls/TableViewTimePicker.cs
@@ -39,9 +39,9 @@ protected override void OnApplyTemplate()
39
UpdateTimeText();
40
}
41
42
- protected override void OnTapped(TappedRoutedEventArgs e)
+ protected override void OnPointerPressed(PointerRoutedEventArgs e)
43
{
44
- base.OnTapped(e);
+ base.OnPointerPressed(e);
45
46
ShowFlyout();
47
@@ -110,7 +110,7 @@ private void UpdateTimeText()
110
111
if (_timeText is null) return;
112
113
- var formatter = DateTimeFormatHelper.GetDateTimeFormatter("shortime", ClockIdentifier);
+ var formatter = DateTimeFormatHelper.GetDateTimeFormatter("shorttime", ClockIdentifier);
114
115
_timeText.Text = SelectedTime switch
116
0 commit comments