Delphi XE6 mobile:如何在绑定TObject属性时将TObject分配给TListviewItem

时间:2014-08-15 18:32:13

标签: android delphi delphi-xe6 livebindings tlistview

我有以下内容:

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的属性值。

感谢。

0 个答案:

没有答案