Results 1 to 2 of 2

Thread: Is there an Image component with double buffering available?

  1. #1

    Is there an Image component with double buffering available?

    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?

  2. #2
    Yes, it's TImage in Lazarus too. But TImage doesn't have that property, its parents have (same effect)
    Code:
      form1.DoubleBuffered:=true;
      panel1.DoubleBuffered:=true;
      groupbox1.DoubleBuffered:=true;
    They are components or actual form that image is placed on.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •