pascalabcnet/InstallerSamples/Graphics/GraphWPF/Clock.pas

10 lines
249 B
ObjectPascal
Raw Normal View History

2017-12-17 14:40:06 +03:00
uses GraphWPF;
begin
2017-12-17 14:40:06 +03:00
Window.Title := 'Цифровые часы';
Font.Size := 180;
BeginFrameBasedAnimation(
2025-07-19 20:06:25 +03:00
()->DrawText(Window.ClientRect,DateTime.Now.ToLongTimeString.Replace(' AM','').Replace(' PM',''),Colors.Red),
1
);
end.