forked from lmbelo/python4delphi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit2.lfm
More file actions
62 lines (62 loc) · 1.08 KB
/
Unit2.lfm
File metadata and controls
62 lines (62 loc) · 1.08 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
object TestForm: TTestForm
Left = 725
Height = 341
Top = 200
Width = 614
ClientHeight = 341
ClientWidth = 614
LCLVersion = '1.5'
object CheckBox1: TCheckBox
Left = 96
Height = 22
Top = 16
Width = 91
Caption = 'CheckBox1'
TabOrder = 0
end
object CheckBox2: TCheckBox
Left = 96
Height = 22
Top = 56
Width = 91
Caption = 'CheckBox2'
Checked = True
State = cbChecked
TabOrder = 1
end
object btnClose: TButton
Left = 88
Height = 25
Top = 256
Width = 75
Caption = 'Close'
OnClick = btnCloseClick
TabOrder = 2
end
object Edit1: TEdit
Left = 96
Height = 25
Top = 96
Width = 121
TabOrder = 3
Text = 'Edit1'
end
object ListBox1: TListBox
Left = 328
Height = 169
Top = 48
Width = 249
ItemHeight = 0
ScrollWidth = 247
TabOrder = 4
TopIndex = -1
end
object btnAdd: TButton
Left = 104
Height = 25
Top = 128
Width = 75
Caption = 'Add'
TabOrder = 5
end
end