PDA

View Full Version : Is there an Image component with double buffering available?



Frank13
08-11-2011, 08:43 PM
In Delphi I can drop a TImage onto a TScrollBar, set DoubleBuffered to true and voila I have what I need.

It would be nice to do this on Lazarus/FPC, even nicer if it was available for Mac and Linux.

Any chance the components I need are already available for download or purchase?

User137
09-11-2011, 05:50 AM
Yes, it's TImage in Lazarus too. But TImage doesn't have that property, its parents have (same effect)

form1.DoubleBuffered:=true;
panel1.DoubleBuffered:=true;
groupbox1.DoubleBuffered:=true;
They are components or actual form that image is placed on.