-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFrameBgDrawEditor.dfm
More file actions
240 lines (240 loc) · 4.86 KB
/
FrameBgDrawEditor.dfm
File metadata and controls
240 lines (240 loc) · 4.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
object FrameBgDrawEditor: TFrameBgDrawEditor
Left = 0
Top = 0
Width = 640
Height = 480
TabOrder = 0
object pnlBackground: TPanel
Left = 0
Top = 0
Width = 640
Height = 50
Align = alTop
BevelOuter = bvNone
TabOrder = 0
object lblBackground: TLabel
Left = 16
Top = 16
Width = 60
Height = 13
Caption = '背景图路径:'
end
object edtBackground: TEdit
Left = 88
Top = 13
Width = 465
Height = 21
TabOrder = 0
OnChange = EditModified
end
object btnBrowse: TButton
Left = 559
Top = 11
Width = 75
Height = 25
Caption = '浏览...'
TabOrder = 1
OnClick = btnBrowseClick
end
end
object pnlElements: TPanel
Left = 0
Top = 50
Width = 640
Height = 430
Align = alClient
BevelOuter = bvNone
TabOrder = 1
object lblElements: TLabel
Left = 16
Top = 6
Width = 48
Height = 13
Caption = '元素列表:'
end
object lstElements: TListBox
Left = 16
Top = 24
Width = 217
Height = 393
ItemHeight = 13
TabOrder = 0
OnClick = lstElementsClick
end
object pnlElementButtons: TPanel
Left = 239
Top = 24
Width = 98
Height = 393
BevelOuter = bvNone
TabOrder = 1
object btnAddElement: TButton
Left = 0
Top = 0
Width = 98
Height = 25
Caption = '添加元素'
TabOrder = 0
OnClick = btnAddElementClick
end
object btnEditElement: TButton
Left = 0
Top = 31
Width = 98
Height = 25
Caption = '编辑元素'
Enabled = False
TabOrder = 1
OnClick = btnEditElementClick
end
object btnDeleteElement: TButton
Left = 0
Top = 62
Width = 98
Height = 25
Caption = '删除元素'
Enabled = False
TabOrder = 2
OnClick = btnDeleteElementClick
end
object btnMoveUp: TButton
Left = 0
Top = 124
Width = 98
Height = 25
Caption = '上移'
Enabled = False
TabOrder = 3
OnClick = btnMoveUpClick
end
object btnMoveDown: TButton
Left = 0
Top = 155
Width = 98
Height = 25
Caption = '下移'
Enabled = False
TabOrder = 4
OnClick = btnMoveDownClick
end
end
object pnlElementDetails: TPanel
Left = 343
Top = 24
Width = 281
Height = 393
BevelOuter = bvNone
TabOrder = 2
Visible = False
object lblElementType: TLabel
Left = 16
Top = 16
Width = 48
Height = 13
Caption = '元素类型:'
end
object lblElementName: TLabel
Left = 16
Top = 56
Width = 48
Height = 13
Caption = '元素名称:'
end
object lblX: TLabel
Left = 16
Top = 96
Width = 10
Height = 13
Caption = 'X:'
end
object lblY: TLabel
Left = 112
Top = 96
Width = 10
Height = 13
Caption = 'Y:'
end
object lblScale: TLabel
Left = 208
Top = 96
Width = 36
Height = 13
Caption = '缩放比:'
end
object lblAdditional: TLabel
Left = 16
Top = 136
Width = 48
Height = 13
Caption = '文本内容:'
end
object cmbElementType: TComboBox
Left = 80
Top = 13
Width = 145
Height = 21
Style = csDropDownList
TabOrder = 0
OnChange = cmbElementTypeChange
end
object edtElementName: TEdit
Left = 80
Top = 53
Width = 185
Height = 21
TabOrder = 1
end
object edtX: TEdit
Left = 32
Top = 93
Width = 65
Height = 21
TabOrder = 2
end
object edtY: TEdit
Left = 128
Top = 93
Width = 65
Height = 21
TabOrder = 3
end
object edtScale: TEdit
Left = 248
Top = 93
Width = 25
Height = 21
TabOrder = 4
Text = '1.0'
end
object memAdditional: TMemo
Left = 16
Top = 155
Width = 257
Height = 193
TabOrder = 5
end
object btnSaveElement: TButton
Left = 98
Top = 354
Width = 75
Height = 25
Caption = '保存'
TabOrder = 6
OnClick = btnSaveElementClick
end
object btnCancelElement: TButton
Left = 179
Top = 354
Width = 75
Height = 25
Caption = '取消'
TabOrder = 7
OnClick = btnCancelElementClick
end
end
end
object dlgOpenPicture: TOpenDialog
Left = 416
Top = 8
end
end