-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunit1.lfm
76 lines (76 loc) · 1.42 KB
/
unit1.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
75
76
object Form1: TForm1
Left = 257
Height = 294
Top = 31
Width = 580
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = 'Units convertor'
ClientHeight = 294
ClientWidth = 580
OnCreate = FormCreate
Position = poScreenCenter
object ComboBox1: TComboBox
Left = 8
Height = 23
Top = 8
Width = 220
ItemHeight = 15
OnChange = ComboBox1Change
TabOrder = 0
end
object ListBox1: TListBox
Left = 8
Height = 256
Top = 32
Width = 220
ItemHeight = 0
TabOrder = 1
end
object ListBox2: TListBox
Left = 256
Height = 256
Top = 32
Width = 200
ItemHeight = 0
TabOrder = 2
end
object Edit1: TEdit
Left = 464
Height = 23
Top = 32
Width = 112
TabOrder = 3
end
object Label1: TLabel
Left = 464
Height = 1
Top = 72
Width = 1
ParentColor = False
WordWrap = True
end
object Button1: TButton
Left = 464
Height = 33
Top = 104
Width = 112
Caption = 'convert'
OnClick = Button1Click
TabOrder = 4
end
object Label2: TLabel
Left = 232
Height = 21
Top = 112
Width = 29
Caption = 'To>'
Font.CharSet = ANSI_CHARSET
Font.Height = -16
Font.Pitch = fpVariable
Font.Quality = fqDraft
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
end
end