This commit is contained in:
2022-03-08 15:10:45 +08:00
parent 63ee572e8b
commit e1d80b6c62
4 changed files with 46 additions and 6 deletions

View File

@ -14,6 +14,10 @@ namespace Billing.UI
{
if (value is DateTime date)
{
if (date.Year <= 1900)
{
return null;
}
return date.ToString(Resource.TitleDateFormat);
}
return value;