2020-04-28 15:56:56 +08:00
|
|
|
|
|
2020-05-29 00:33:49 +08:00
|
|
|
|
namespace AntDesign.Internal
|
2020-04-28 15:56:56 +08:00
|
|
|
|
{
|
2020-06-01 14:09:28 +08:00
|
|
|
|
public class DatePickerStatus
|
2020-04-28 15:56:56 +08:00
|
|
|
|
{
|
|
|
|
|
internal string _initPicker = null;
|
2020-08-14 12:43:48 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// note that has picker selected value
|
|
|
|
|
/// </summary>
|
2020-04-28 15:56:56 +08:00
|
|
|
|
internal bool _hadSelectValue = false;
|
2020-08-14 12:43:48 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// note that has picker selected value. is would set to false when picker open every time.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal bool _currentShowHadSelectValue = false;
|
2020-04-28 15:56:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|