mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-16 01:41:14 +08:00
d99f4f35a8
* feat: add localization option to DatePicker * fix(module: datepicker): fix formatting issue * fix: fix Week/Year panel miss matching fix picker not update when setting CultureInfo fix ShortWeekDays names and order * fix: fix binding of CultureInfo in datetime demos Add globalization demo * fix: datetime string format Co-authored-by: ElderJames <shunjiey@hotmail.com>
16 lines
340 B
C#
16 lines
340 B
C#
using System;
|
|
using System.Globalization;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public interface IDatePicker
|
|
{
|
|
public DateTime CurrentDate { get; set; }
|
|
public CultureInfo CultureInfo { get; set; }
|
|
|
|
void ChangePickerType(string type);
|
|
void ChangePickerType(string type, int index);
|
|
void Close();
|
|
}
|
|
}
|