你可以用FormatDateTime,如:
Label1.Caption:=FormatDateTime('yyyy-mm-dd hh_nn_ss',now());
结果为:
xxxx-xx-xx xx_xx_xx
当然你可以这样写:
Label1.Caption := FormatDateTime('yyyy年mm月dd日 hh时nn分ss秒',now());
结果为:
xxxx年xx月xx日 xx时xx分xx秒
FormatDateTime('YYYY-MM-DD',Now)
你可以用FormatDateTime('YYYY-MM-DD',Now)
Label1.Caption := StringReplace(DateTimetostr(now()),':','_',[rfReplaceAll]);