FMxXCollectionEditor.fmx 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. object XCollectionEditorForm: TXCollectionEditorForm
  2. Left = 0
  3. Top = 0
  4. Caption = 'FCollection Editor'
  5. ClientHeight = 452
  6. ClientWidth = 312
  7. FormFactor.Width = 320
  8. FormFactor.Height = 480
  9. FormFactor.Devices = [Desktop]
  10. OnCreate = FormCreate
  11. OnDestroy = FormDestroy
  12. OnHide = FormHide
  13. DesignerMasterStyle = 0
  14. object ToolBar1: TToolBar
  15. Size.Width = 312.000000000000000000
  16. Size.Height = 40.000000000000000000
  17. Size.PlatformDefault = False
  18. TabOrder = 0
  19. object TBAdd: TButton
  20. PopupMenu = PMToolBar
  21. Position.Y = 8.000000000000000000
  22. Size.Width = 65.000000000000000000
  23. Size.Height = 22.000000000000000000
  24. Size.PlatformDefault = False
  25. StyleLookup = 'arrowdowntoolbuttonborderedright'
  26. TabOrder = 0
  27. Text = 'TBAdd'
  28. end
  29. object Button1: TButton
  30. Action = ACRemove
  31. Enabled = True
  32. ImageIndex = -1
  33. Position.X = 64.000000000000000000
  34. Position.Y = 8.000000000000000000
  35. Size.Width = 73.000000000000000000
  36. Size.Height = 22.000000000000000000
  37. Size.PlatformDefault = False
  38. TabOrder = 1
  39. end
  40. object Button2: TButton
  41. Action = ACMoveUp
  42. Enabled = True
  43. ImageIndex = -1
  44. Position.X = 136.000000000000000000
  45. Position.Y = 8.000000000000000000
  46. TabOrder = 2
  47. end
  48. object Button3: TButton
  49. Action = ACMoveDown
  50. Enabled = True
  51. ImageIndex = -1
  52. Position.X = 216.000000000000000000
  53. Position.Y = 8.000000000000000000
  54. TabOrder = 3
  55. end
  56. end
  57. object ListView: TListView
  58. ItemAppearanceClassName = 'TListItemAppearance'
  59. ItemEditAppearanceClassName = 'TListItemShowCheckAppearance'
  60. HeaderAppearanceClassName = 'TListHeaderObjects'
  61. FooterAppearanceClassName = 'TListHeaderObjects'
  62. Align = Client
  63. Size.Width = 312.000000000000000000
  64. Size.Height = 412.000000000000000000
  65. Size.PlatformDefault = False
  66. TabOrder = 1
  67. OnChange = ListViewChange
  68. end
  69. object PMListView: TPopupMenu
  70. Left = 48
  71. Top = 120
  72. end
  73. object PMToolBar: TPopupMenu
  74. Left = 48
  75. Top = 176
  76. end
  77. object ActionList: TActionList
  78. Left = 136
  79. Top = 120
  80. object ACRemove: TAction
  81. Text = 'Remove item'
  82. Hint = 'Remove item'
  83. OnExecute = ACRemoveExecute
  84. end
  85. object ACMoveUp: TAction
  86. Text = 'Move up'
  87. Hint = 'Move up'
  88. OnExecute = ACMoveUpExecute
  89. end
  90. object ACMoveDown: TAction
  91. Text = 'Move down'
  92. Hint = 'Move down'
  93. OnExecute = ACMoveDownExecute
  94. end
  95. end
  96. end