Listview Subitem图像

时间:2011-12-14 01:17:28

标签: delphi listview

我错过了一些明显的东西,我找不到将ImageIndex分配给TListView的子项的方法。

我在vsReportMode中设置了Listview,有2列,我可以轻松地将ImageIndex分配给第一列Items,如:

ListView1.Items[0].ImageIndex := 0;
ListView1.Items[1].ImageIndex := 1;
ListView1.Items[2].ImageIndex := 2;

我以为我可以将ImageIndex分配给它的SubItems,类似这样的东西(显然不起作用,因为SubItems似乎不存在该属性)

ListView1.Items[0].SubItems[0].ImageIndex := 0;
ListView1.Items[1].SubItems[0].ImageIndex := 1;
ListView1.Items[2].SubItems[0].ImageIndex := 2;

我是否再次困惑自己,或者SubItem Images没有这样的属性?

1 个答案:

答案 0 :(得分:9)

改为使用SubItemImages

var
  LI: TListItem;
  i: Integer;
begin
  ListView1.ViewStyle := vsReport;
  for i := 0 to 1 do
    with ListView1.Columns.Add do
      Caption := 'Column ' + IntToStr(i);

  for i := 0 to ImageList1.Count - 1 do
  begin
    LI := ListView1.Items.Add;
    LI.Caption := Format('Item %d', [i]);
    LI.ImageIndex := i;
    LI.SubItems.Add(Format('SubItem %d', [i]));
    LI.SubItemImages[0] := i; // SubItems[ColumnIndex] := ImageIndex;
  end;
end;

这导致

ListView with SubItems and Images