我有以下内容:
TMyObject = class(TObject)
...
public
property Id: Integer read FId write FId;
property Content: string read FContent write FContent;
end;
TMyList = class(TObjectList<TMyObject>)
我使用带有 TAdapterBindSource 和 TDataGeneratorAdapter 的 TMyList 将 TMyList 绑定到 TListview。好的,项目已正确显示。
当我在 TListview 的项目中单击时,在 OnItemClick 中,我需要知道 TListViewItem 分配了哪个 TMyObject 实例。
使用 TListViewItem.Index 不起作用,因为我的列表视图有标题项,然后索引值不对应。
单击列表视图项时,我需要获取 TMyObject 的属性值。
谢谢。