pascalabcnet/InstallerSamples/Graphics/GraphWPF/Clock.pas

12 lines
228 B
ObjectPascal

uses GraphWPF;
begin
Window.Title := 'Öèôðîâûå ÷àñû';
Font.Size := 180;
while True do
begin
DrawText(Window.ClientRect,System.DateTime.Now.ToLongTimeString,Colors.Red);
Sleep(1000);
Window.Clear;
end;
end.