在delphi中,试图使用Ttimer组件在TLabel上显示时间和日期,但我无法让这段代码工作
begin
clock.Caption := TimeToStr(Time)
end;时钟是TLabel名称
发布于 2022-10-02 00:56:47
FMX标签没有标题属性。相反,它们有一个文本属性。
试一试
begin
clock.Text := TimeToStr(Time)
end;https://stackoverflow.com/questions/73922583
复制相似问题