-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathunit3.lfm
69 lines (69 loc) · 1.22 KB
/
unit3.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
object Form3: TForm3
Left = 359
Height = 133
Top = 117
Width = 194
BorderStyle = bsDialog
Caption = 'Form3'
ClientHeight = 133
ClientWidth = 194
Color = clGray
Position = poScreenCenter
LCLVersion = '3.99.0.0'
OnCreate = FormCreate
OnShow = FormShow
object Button1: TButton
Left = 8
Height = 25
Top = 96
Width = 176
Caption = 'OK'
Color = clGray
Font.Color = clSilver
ModalResult = 1
ParentFont = False
TabOrder = 2
end
object Label1: TLabel
Left = 8
Height = 15
Top = 26
Width = 32
Caption = 'Width'
Font.Color = clSilver
ParentFont = False
end
object Label2: TLabel
Left = 8
Height = 15
Top = 66
Width = 36
Caption = 'Height'
Font.Color = clSilver
ParentFont = False
end
object Edit1: TEdit
Left = 56
Height = 23
Top = 16
Width = 128
Color = clGray
Font.Color = clSilver
ParentFont = False
TabOrder = 0
Text = 'Edit1'
OnKeyDown = Edit1KeyDown
end
object Edit2: TEdit
Left = 56
Height = 23
Top = 56
Width = 128
Color = clGray
Font.Color = clSilver
ParentFont = False
TabOrder = 1
Text = 'Edit2'
OnKeyDown = Edit1KeyDown
end
end