TTMSFMXListView

Do you have a demo project for TTMSFMXListView? 


Thanks, Bob

This should of course be in the Firemonkey forum!

TTMSFMXListView is a wrapper around TGrid that adds the VCL way of adding items / subitems in different columns. You can add your columns and then afterwards use the items collection and subitems collection to add lines in the grid:


var
  li: TListItem;
  I: Integer;
begin
  for I := 0 to 4 do
    TMSFMXListView1.Columns.Add;

  li := TMSFMXListView1.Items.Add;
  li.Text := 'Value 1';
  li.SubItems.Add('Value 2');
  li.SubItems.Add('Value 3');
  li.SubItems.Add('Value 4');
  li.SubItems.Add('Value 5');

Kind Regards, 
Pieter