fix: fix various timepicker sync issue.

This commit is contained in:
rabbitism
2024-09-04 02:18:39 +08:00
parent 3742fcf27e
commit 561554f2bf
8 changed files with 116 additions and 23 deletions

View File

@@ -0,0 +1,16 @@
using Avalonia.Interactivity;
namespace Ursa.Controls;
public class TimeChangedEventArgs:RoutedEventArgs
{
public TimeSpan? OldTime { get; }
public TimeSpan? NewTime { get; }
public TimeChangedEventArgs(TimeSpan? oldTime, TimeSpan? newTime)
{
this.OldTime = oldTime;
this.NewTime = newTime;
}
}