pascalabcnet/InstallerSamples/Graphics/GraphWPF/EllRectInWindow.pas

7 lines
186 B
ObjectPascal
Raw Normal View History

2017-12-17 14:40:06 +03:00
uses GraphWPF;
begin
Pen.Width := 1;
Rectangle(0,0,Window.Width-1,Window.Height-1);
Ellipse((Window.Width-1)/2,(Window.Height-1)/2,(Window.Width-1)/2,(Window.Height-1)/2);
end.