dtValue = DateTime.Parse(strDate) ;
}
return dtValue ;
}
set
{
dtValue = value ;
if (dtValue == DateTime.MinValue)
EmptyInput() ;
else
{
tbYear.Text = dtValue.Year.ToString() ;
tbMonth.Text = dtValue.Month.ToString() ;
tbDay.Text = dtValue.Day.ToString() ;
}
this.Refresh() ;
}
}
#endregion
