_xiaofang/xiaofang/Assets/Bitsplash/Modular Date Picker/Base/Script/Elements/TodayButton.cs
2024-11-29 16:19:12 +08:00

23 lines
548 B
C#

using Bitsplash.DatePicker;
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace Bitsplash.DatePicker
{
public class TodayButton : DatePickerButton , IDatePickerSettingsItem
{
public int Order { get { return 8; } }
public override void RaiseClicked()
{
if (Content != null)
Content.Selection.SelectOne(DateTime.Today);
}
public string EditorTitle
{
get { return "Today Button"; }
}
}
}