pascalabcnet/InstallerSamples/Graphics/GraphWPF/Clock.pas

10 lines
231 B
ObjectPascal
Raw Permalink 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(
()->DrawText(Window.ClientRect,DateTime.Now.ToLongTimeString.Replace(' AM',''),Colors.Red),
1
);
end.