1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00
osu-lazer/osu.Game.Tournament/Components/DateTextBox.cs

46 lines
1.4 KiB
C#
Raw Normal View History

2019-03-04 12:24:19 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-11-17 13:05:22 +08:00
using System;
2019-03-02 12:40:43 +08:00
using osu.Framework.Bindables;
2018-11-17 13:05:22 +08:00
using osu.Game.Graphics.UserInterface;
using osu.Game.Overlays.Settings;
namespace osu.Game.Tournament.Components
{
public class DateTextBox : SettingsTextBox
{
public new Bindable<DateTimeOffset> Current
2018-11-17 13:05:22 +08:00
{
get => current;
2018-11-17 13:05:22 +08:00
set
{
current = value.GetBoundCopy();
current.BindValueChanged(dto =>
base.Current.Value = dto.NewValue.ToUniversalTime().ToString("yyyy-MM-ddTHH:mm:ssZ"), true);
2018-11-17 13:05:22 +08:00
}
}
// hold a reference to the provided bindable so we don't have to in every settings section.
private Bindable<DateTimeOffset> current = new Bindable<DateTimeOffset>();
2018-11-17 13:05:22 +08:00
public DateTextBox()
{
base.Current = new Bindable<string>();
2020-09-02 12:17:17 +08:00
((OsuTextBox)Control).OnCommit += (sender, newText) =>
2018-11-17 13:05:22 +08:00
{
try
{
current.Value = DateTimeOffset.Parse(sender.Text);
2018-11-17 13:05:22 +08:00
}
catch
{
2019-06-13 16:04:57 +08:00
// reset textbox content to its last valid state on a parse failure.
current.TriggerChange();
2018-11-17 13:05:22 +08:00
}
};
}
}
}