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

6 lines
116 B
ObjectPascal

uses GraphWPF;
begin
OnMouseDown := (x,y,mb) -> if mb=1 then Circle(x,y,5);
OnKeyDown := k -> Print(k);
end.