pascalabcnet/TestSuite/CompilationSamples/mouse1.pas

6 lines
116 B
ObjectPascal
Raw Permalink Normal View History

2017-12-17 14:40:06 +03:00
uses GraphWPF;
begin
OnMouseDown := (x,y,mb) -> if mb=1 then Circle(x,y,5);
OnKeyDown := k -> Print(k);
end.