source: trunk/Forms/FormList.lfm

Last change on this file was 320, checked in by chronos, 6 months ago
  • Fixed: Show toolbars hints.
File size: 2.5 KB
Line 
1object FormList: TFormList
2 Left = 1040
3 Height = 360
4 Top = 540
5 Width = 480
6 Caption = 'List'
7 ClientHeight = 360
8 ClientWidth = 480
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnShow = FormShow
12 LCLVersion = '3.4.0.0'
13 object ListView1: TListView
14 Left = 0
15 Height = 322
16 Top = 0
17 Width = 480
18 Align = alClient
19 Columns = <
20 item
21 Caption = 'Name'
22 Width = 466
23 end>
24 MultiSelect = True
25 OwnerData = True
26 ParentFont = False
27 PopupMenu = PopupMenu1
28 ReadOnly = True
29 RowSelect = True
30 TabOrder = 0
31 ViewStyle = vsReport
32 OnCustomDrawSubItem = ListView1CustomDrawSubItem
33 OnData = ListView1Data
34 OnDblClick = AModifyExecute
35 OnKeyPress = ListView1KeyPress
36 OnKeyUp = ListView1KeyUp
37 OnSelectItem = ListView1SelectItem
38 end
39 object ToolBar1: TToolBar
40 Left = 0
41 Height = 38
42 Top = 322
43 Width = 480
44 Align = alBottom
45 Images = Core.ImageListSmall
46 ParentFont = False
47 ParentShowHint = False
48 ShowHint = True
49 TabOrder = 1
50 object ToolButton1: TToolButton
51 Left = 1
52 Top = 2
53 Action = AAdd
54 end
55 object ToolButton2: TToolButton
56 Left = 36
57 Top = 2
58 Action = AModify
59 end
60 object ToolButton3: TToolButton
61 Left = 71
62 Top = 2
63 Action = ARemove
64 end
65 object ToolButton4: TToolButton
66 Left = 106
67 Top = 2
68 Action = AClone
69 end
70 end
71 object ActionList1: TActionList
72 Images = Core.ImageListSmall
73 Left = 208
74 Top = 163
75 object AAdd: TAction
76 Caption = 'Add'
77 ImageIndex = 16
78 OnExecute = AAddExecute
79 end
80 object AModify: TAction
81 Caption = 'Modify'
82 ImageIndex = 6
83 OnExecute = AModifyExecute
84 end
85 object ARemove: TAction
86 Caption = 'Remove'
87 ImageIndex = 18
88 OnExecute = ARemoveExecute
89 end
90 object AClone: TAction
91 Caption = 'Clone'
92 ImageIndex = 17
93 OnExecute = ACloneExecute
94 end
95 object ASelectAll: TAction
96 Caption = 'Select all'
97 OnExecute = ASelectAllExecute
98 ShortCut = 16449
99 end
100 end
101 object PopupMenu1: TPopupMenu
102 Images = Core.ImageListSmall
103 Left = 352
104 Top = 160
105 object MenuItem1: TMenuItem
106 Action = AAdd
107 end
108 object MenuItem2: TMenuItem
109 Action = AModify
110 end
111 object MenuItem3: TMenuItem
112 Action = ARemove
113 end
114 object MenuItem4: TMenuItem
115 Action = AClone
116 end
117 object MenuItem5: TMenuItem
118 Action = ASelectAll
119 end
120 end
121end
Note: See TracBrowser for help on using the repository browser.