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