forked from lmbelo/python4delphi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit2.dfm
More file actions
67 lines (67 loc) · 1.22 KB
/
Unit2.dfm
File metadata and controls
67 lines (67 loc) · 1.22 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
object TestForm: TTestForm
Left = 213
Top = 114
Width = 870
Height = 500
Caption = 'Test Form'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Shell Dlg 2'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object CheckBox1: TCheckBox
Left = 96
Top = 16
Width = 97
Height = 17
Caption = 'CheckBox1'
TabOrder = 0
end
object CheckBox2: TCheckBox
Left = 96
Top = 56
Width = 97
Height = 17
Caption = 'CheckBox2'
Checked = True
State = cbChecked
TabOrder = 1
end
object btnClose: TButton
Left = 88
Top = 256
Width = 75
Height = 25
Caption = 'Close'
TabOrder = 2
OnClick = btnCloseClick
end
object Edit1: TEdit
Left = 96
Top = 96
Width = 121
Height = 21
TabOrder = 3
Text = 'Edit1'
end
object ListBox1: TListBox
Left = 328
Top = 48
Width = 249
Height = 169
ItemHeight = 13
TabOrder = 4
end
object btnAdd: TButton
Left = 104
Top = 128
Width = 75
Height = 25
Caption = 'Add'
TabOrder = 5
end
end