-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusettings.lfm
74 lines (74 loc) · 1.4 KB
/
usettings.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
object SettingsForm: TSettingsForm
Left = 952
Height = 178
Top = 450
Width = 236
Caption = 'Settings'
ClientHeight = 178
ClientWidth = 236
Position = poScreenCenter
LCLVersion = '3.99.0.0'
OnResize = FormResize
OnShow = FormShow
object DeviceList: TListBox
Left = 4
Height = 110
Top = 32
Width = 228
Align = alClient
BorderSpacing.Around = 4
BorderSpacing.CellAlignHorizontal = ccaLeftTop
BorderSpacing.CellAlignVertical = ccaLeftTop
Items.Strings = (
'1'
'2'
'3'
'4'
'5'
'6'
)
ItemHeight = 16
TabOrder = 0
OnSelectionChange = DeviceListSelectionChange
end
object TopPanel: TPanel
Left = 4
Height = 24
Top = 4
Width = 228
Align = alTop
Alignment = taLeftJustify
BorderSpacing.Around = 4
Caption = 'Select output device'
TabOrder = 1
end
object ButtonPanel: TPanel
Left = 0
Height = 32
Top = 146
Width = 236
Align = alBottom
ClientHeight = 32
ClientWidth = 236
TabOrder = 2
object OKButton: TButton
Left = 32
Height = 26
Top = 2
Width = 75
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 0
end
object CancelButton: TButton
Left = 116
Height = 26
Top = 2
Width = 75
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
end
end