pascalabcnet/InstallerSamples/Graphics/GraphWPF/mouse2.pas

10 lines
287 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 := 'Рисование мышью';
Pen.Color := Colors.Blue;
Pen.Width := 3;
OnMouseDown := (x,y,mb) -> MoveTo(x,y);
OnMouseMove := (x,y,mb) -> if mb=1 then LineTo(x,y);
OnKeyDown := k -> if k = Key.Space then Window.Save('a.png');
end.