A:Delphi 10에서 ListView에서 ItemAppearance에 액세스하려면 어떻게 합니까?대답: Delphi 10에서 ListView에서 ItemAppearance에 액세스하는 방법은 무엇입니까?
answer re: How to access an ItemAppearance from ListView in Delphi 10?
2018년 2월 7일
3
procedure TForm1.ListView1ItemClick(const Sender: TObject;
const AItem: TListViewItem);
begin
showmessage(AItem.Objects[1].Data.AsString); // Value of field
showmessage(AItem.Objects[1].Name); // Name of field
// OR
showmessage(AItem.Data['txtID'].AsString); // Value of field
end;
Open Full Answer
Reference
이 문제에 관하여(A:Delphi 10에서 ListView에서 ItemAppearance에 액세스하려면 어떻게 합니까?대답: Delphi 10에서 ListView에서 ItemAppearance에 액세스하는 방법은 무엇입니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/maxny1/answer-how-to-access-an-itemappearance-from-listview-in-delphi-10-3p8h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)