pascalabcnet/InstallerSamples/Graphics/GraphWPF/mouse2.pas
Бондарев Иван fb60f8884d bug fix #585
2017-12-17 12:40:06 +01:00

10 lines
287 B
ObjectPascal

uses GraphWPF;
begin
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.