object ItemListForm: TItemListForm Left = 320 Height = 369 Top = 124 Width = 502 Caption = 'Item list' ClientHeight = 369 ClientWidth = 502 OnCreate = FormCreate OnDestroy = FormDestroy OnShow = FormShow LCLVersion = '0.9.31' object ButtonAdd: TButton Left = 8 Height = 20 Top = 342 Width = 80 Action = AItemAdd Anchors = [akLeft, akBottom] TabOrder = 0 end object ButtonDelete: TButton Left = 93 Height = 20 Top = 342 Width = 80 Action = AItemDelete Anchors = [akLeft, akBottom] TabOrder = 1 end object ButtonView: TButton Left = 179 Height = 20 Top = 342 Width = 80 Action = AItemView Anchors = [akLeft, akBottom] TabOrder = 2 end object ButtonEdit: TButton Left = 265 Height = 20 Top = 342 Width = 80 Action = AItemEdit Anchors = [akLeft, akBottom] TabOrder = 3 end object ListView1: TListView Left = 8 Height = 326 Top = 8 Width = 485 Anchors = [akTop, akLeft, akRight, akBottom] Columns = <> OwnerData = True ReadOnly = True RowSelect = True TabOrder = 4 ViewStyle = vsReport OnData = ListView1Data OnDblClick = ListView1DblClick OnKeyPress = ListView1KeyPress OnResize = ListView1Resize OnSelectItem = ListView1SelectItem end object ButtonClose: TButton Left = 418 Height = 20 Top = 342 Width = 75 Action = AClose Anchors = [akRight, akBottom] TabOrder = 5 end object ActionList1: TActionList left = 229 top = 104 object AItemView: TAction Caption = 'View' OnExecute = AItemViewExecute end object AItemEdit: TAction Caption = 'Edit' OnExecute = AItemEditExecute end object AItemAdd: TAction Caption = 'Add' OnExecute = AItemAddExecute end object AItemDelete: TAction Caption = 'Delete' OnExecute = AItemDeleteExecute end object AClose: TAction Caption = 'Close' OnExecute = ACloseExecute end end end