delphi – 显示“空”TDateTimePicker

前端之家收集整理的这篇文章主要介绍了delphi – 显示“空”TDateTimePicker前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在Delphi 2010中显示“空”TDateTimePicker(即隐藏日期显示,使控件显示为空).我知道设置格式显示时代的诀窍,但是使用Delphi 2010在 Windows 7上运行字符串“A.D.”当我这样做时出现在控制中.

解决方法

尝试将格式设置为空格值.
DateTimePicker1.Format:=' ';

然后在OnChange方法中再次设置格式

procedure TForm1.DateTimePicker1Change(Sender: TObject);
begin
DateTimePicker1.Format:=ShortDateFormat;
end;
原文链接:https://www.f2er.com/delphi/101196.html

猜你在找的Delphi相关文章