![]() |
Icon in TListview im Subitem?
Hallo, ich benutze für meine Dateioperationen ein TListView.
Nun möchte ich zusätzlich zum Text auch noch ein Icon anzeigen lassen. es soll nun im Subitem "Status" einmal Text sowie noch zusätzlich ein Icon angezeigt werden. was ich bisher ausprobiert habe ist : Listview1.itemindex := .... aber wie klappt es jetzt bei subitems? |
Re: Icon in TListview im Subitem?
Schau Dir mal die Eigenschaft SubItemImages von TListItem an.
Delphi-Quellcode:
var Item: TListItem;
begin Item := ListView1.Items.Add; Item.Caption := 'Test'; Item.SubItems.Add('Hallo'); if Assigned(ListView1.SmallImages) and (ListView1.SmallImages.Count > 0) then Item.SubItemImages[0] := 0; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:38 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz