Every listview needs a list object defined here as child.
Source position: MUIClass.Group.pas line 107
published property TMUIListView.List : TMUIList |
As every other child, it will get disposes when its parent object is disposed.
Example:
ListView := TMUIListView.Create; with ListView do begin Background.Spec := MUIV_Frame_ReadList; List := TMUIList.Create; List.Input := False; List.Format := ',,'; Parent := ins.Group.TMUIGroup end;