mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-02 12:07:44 +08:00
cf959decf9
* feat: refactor datePicker, add Calendar(basic) * feat: add calendar and demos * fix: timePicker format error * fix: release comments * refactor: replace @bind-Value with Value * refactor: replace @bind-Value with Value * fix: conflit
14 lines
259 B
C#
14 lines
259 B
C#
using System;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public interface IDatePicker
|
|
{
|
|
public DateTime CurrentDate { get; set; }
|
|
|
|
void ChangePickerType(string type);
|
|
void ChangePickerType(string type, int index);
|
|
void Close();
|
|
}
|
|
}
|