зеркало из https://github.com/DeGsoft/maui-linux.git
145 строки
3.4 KiB
C#
145 строки
3.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
|
|
namespace Xamarin.Forms.Platform.WPF
|
|
{
|
|
public class FormsTimePicker : TextBox
|
|
{
|
|
#region Properties
|
|
public static readonly DependencyProperty TimeProperty = DependencyProperty.Register("Time", typeof(TimeSpan?), typeof(FormsTimePicker), new PropertyMetadata(null, new PropertyChangedCallback(OnTimePropertyChanged)));
|
|
public TimeSpan? Time
|
|
{
|
|
get { return (TimeSpan?)GetValue(TimeProperty); }
|
|
set { SetValue(TimeProperty, value); }
|
|
}
|
|
|
|
public static readonly DependencyProperty TimeFormatProperty = DependencyProperty.Register("TimeFormat", typeof(String), typeof(FormsTimePicker), new PropertyMetadata(@"hh\:mm", new PropertyChangedCallback(OnTimeFormatPropertyChanged)));
|
|
public String TimeFormat
|
|
{
|
|
get { return (String)GetValue(TimeFormatProperty); }
|
|
set { SetValue(TimeFormatProperty, value); }
|
|
}
|
|
#endregion
|
|
|
|
#region Events
|
|
public delegate void TimeChangedEventHandler(object sender, TimeChangedEventArgs e);
|
|
public event TimeChangedEventHandler TimeChanged;
|
|
#endregion
|
|
|
|
public FormsTimePicker()
|
|
{
|
|
|
|
}
|
|
|
|
public override void OnApplyTemplate()
|
|
{
|
|
base.OnApplyTemplate();
|
|
SetText();
|
|
}
|
|
|
|
private void SetText()
|
|
{
|
|
if (Time == null)
|
|
Text = null;
|
|
else
|
|
{
|
|
String text = Time.Value.ToString(String.IsNullOrWhiteSpace(TimeFormat) ? @"hh\:mm" : TimeFormat.ToLower());
|
|
if (text.CompareTo(Text) != 0)
|
|
Text = text;
|
|
}
|
|
}
|
|
|
|
private void SetTime()
|
|
{
|
|
TimeSpan timeSpan = TimeSpan.MinValue;
|
|
String timeFormat = String.IsNullOrWhiteSpace(TimeFormat) ? @"hh\:mm" : TimeFormat.ToLower();
|
|
|
|
if (TimeSpan.TryParseExact(Text, timeFormat, null, out timeSpan))
|
|
{
|
|
if ((Time == null) || (Time != null && Time.Value.CompareTo(timeSpan) != 0))
|
|
{
|
|
if (timeSpan < TimeSpan.FromHours(24) && timeSpan > TimeSpan.Zero)
|
|
Time = timeSpan;
|
|
else
|
|
SetText();
|
|
}
|
|
}
|
|
else
|
|
SetText();
|
|
}
|
|
|
|
#region Overrides
|
|
protected override void OnLostFocus(RoutedEventArgs e)
|
|
{
|
|
SetTime();
|
|
base.OnLostFocus(e);
|
|
}
|
|
|
|
protected override void OnGotFocus(RoutedEventArgs e)
|
|
{
|
|
base.OnGotFocus(e);
|
|
}
|
|
#endregion
|
|
|
|
#region Property Changes
|
|
private static void OnTimePropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
|
{
|
|
FormsTimePicker element = d as FormsTimePicker;
|
|
if (element == null)
|
|
return;
|
|
|
|
element.OnTimeChanged(e.OldValue as TimeSpan?, e.NewValue as TimeSpan?);
|
|
}
|
|
|
|
private void OnTimeChanged(TimeSpan? oldValue, TimeSpan? newValue)
|
|
{
|
|
SetText();
|
|
|
|
if (TimeChanged != null)
|
|
TimeChanged(this, new TimeChangedEventArgs(oldValue, newValue));
|
|
}
|
|
|
|
private static void OnTimeFormatPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
|
{
|
|
FormsTimePicker element = d as FormsTimePicker;
|
|
if (element == null)
|
|
return;
|
|
|
|
element.OnTimeFormatChanged();
|
|
}
|
|
|
|
private void OnTimeFormatChanged()
|
|
{
|
|
SetText();
|
|
}
|
|
#endregion
|
|
}
|
|
|
|
public class TimeChangedEventArgs : EventArgs
|
|
{
|
|
private TimeSpan? _oldTime;
|
|
private TimeSpan? _newTime;
|
|
|
|
public TimeSpan? OldTime
|
|
{
|
|
get { return _oldTime; }
|
|
}
|
|
|
|
public TimeSpan? NewTime
|
|
{
|
|
get { return _newTime; }
|
|
}
|
|
|
|
public TimeChangedEventArgs(TimeSpan? oldTime, TimeSpan? newTime)
|
|
{
|
|
_oldTime = oldTime;
|
|
_newTime = newTime;
|
|
}
|
|
}
|
|
}
|