I am looking for a FMX component which creates tiles or panels like those you see when you have a big number of images in a folder.

I am looking for a FMX component which creates tiles or panels like those you see when you have a big number of images in a folder.

The requirement is to be able to scroll vertically and change the number of columns depending on the width of the window.

Does anyone know any such components?

Thanks

Comments

  1. Woll2Woll FirePower (FMX Components) can do this through its Multi-Dimenstional TwwLayotuGrid without any code when bound to a datasource. If the data comes from your file system, some small amount of code would be required. See http://www.woll2woll.com/woll2woll-firepower.html and download the app demos to see if its visual representation and program interactions is what you are after

    ReplyDelete
  2. 1. You can make a TFrame that include a TImage and a TLabel.

    2. You will use a TListBox, set its Columns to 2 or 3.

    3. Create a TListBoxItem, and create a TFrame that you designed, set YourFrame.Parent := YourListBoxItem.

    ReplyDelete
  3. Roy Woll I will have a look at it Roy. Thanks

    Eli M Yes, a TFlowLayout is what I had in mind at first place

    Thanks to all for the tips.

    ReplyDelete

Post a Comment