pascalabcnet/InstallerSamples/Graphics/GraphWPF/Clock.pas
Mikhalkovich Stanislav cabe8f85ee Min(1) Max(1)
2025-07-19 20:06:25 +03:00

10 lines
249 B
ObjectPascal

uses GraphWPF;
begin
Window.Title := 'Цифровые часы';
Font.Size := 180;
BeginFrameBasedAnimation(
()->DrawText(Window.ClientRect,DateTime.Now.ToLongTimeString.Replace(' AM','').Replace(' PM',''),Colors.Red),
1
);
end.