-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroup.lfm
51 lines (51 loc) · 1.05 KB
/
group.lfm
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
object GroupDlg: TGroupDlg
Left = 249
Height = 240
Top = 145
Width = 200
BorderStyle = bsDialog
Caption = 'Grupos'
ClientHeight = 240
ClientWidth = 200
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
Position = poOwnerFormCenter
LCLVersion = '2.0.12.0'
object OKButton: TButton
Left = 19
Height = 25
Top = 199
Width = 74
Caption = 'OK'
ModalResult = 1
OnClick = OKButtonClick
TabOrder = 1
end
object CancelButton: TButton
Left = 107
Height = 25
Top = 199
Width = 74
Cancel = True
Caption = 'Cancelar'
ModalResult = 2
TabOrder = 2
end
object GroupEditor: TValueListEditor
Left = 19
Height = 168
Top = 16
Width = 162
FixedCols = 0
RowCount = 2
ScrollBars = ssAutoVertical
TabOrder = 0
KeyOptions = [keyEdit, keyAdd, keyDelete]
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goColSizing, goEditing, goAutoAddRows, goAlwaysShowEditor, goThumbTracking]
ColWidths = (
64
94
)
end
end