mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 04:58:05 +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
346 B
C#
14 lines
346 B
C#
using System;
|
|
using Microsoft.AspNetCore.Components;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public class CalendarHeaderRenderArgs
|
|
{
|
|
public DateTime Value { get; set; }
|
|
public string Type { get; set; }
|
|
public EventCallback<DateTime> OnChange { get; set; }
|
|
public EventCallback<string> OnTypeChange { get; set; }
|
|
}
|
|
}
|