pascalabcnet/InstallerSamples/Graphics/GraphWPF/Clock.pas
Mikhalkovich Stanislav 6bf2f1cfa0 bug fix #1674
Indices как синоним Indexes
Print для строки как метод расширения
2019-02-01 15:04:07 +03:00

10 lines
231 B
ObjectPascal

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