gpt4 book ai didi

listview - 如何从 Delphi 10 中的 ListView 访问 ItemAppearance?

转载 作者:行者123 更新时间:2023-12-02 20:31:21 26 4
gpt4 key购买 nike

如下图所示,当单击 ListView 中的项目时,我需要选择 txtID 字段的值。我该怎么做?

enter image description here

最佳答案

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;

关于listview - 如何从 Delphi 10 中的 ListView 访问 ItemAppearance?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48664377/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com