-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathunit2.lfm
142 lines (142 loc) · 2.41 KB
/
unit2.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
object Form2: TForm2
Left = 238
Height = 111
Top = 122
Width = 737
ActiveControl = Edit1
Caption = 'Form2'
ClientHeight = 111
ClientWidth = 737
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '2.3.0.0'
object Button1: TButton
Left = 16
Height = 25
Top = 72
Width = 336
Caption = '&Ok'
OnClick = Button1Click
TabOrder = 6
end
object Button2: TButton
Left = 376
Height = 25
Top = 72
Width = 336
Caption = '&Cancel'
OnClick = Button2Click
TabOrder = 7
end
object Label1: TLabel
Left = 8
Height = 15
Top = 8
Width = 62
Caption = 'Aktual state'
ParentColor = False
end
object Edit1: TEdit
Left = 8
Height = 23
Top = 32
Width = 80
OnKeyPress = Edit1KeyPress
TabOrder = 0
Text = 'Edit1'
end
object Label2: TLabel
Left = 104
Height = 15
Top = 8
Width = 68
Caption = 'Read symbol'
ParentColor = False
end
object Edit2: TEdit
Left = 104
Height = 23
Top = 32
Width = 80
OnKeyPress = Edit1KeyPress
TabOrder = 1
Text = 'Edit2'
end
object Label3: TLabel
Left = 200
Height = 15
Top = 8
Width = 70
Caption = 'Write symbol'
ParentColor = False
end
object Edit3: TEdit
Left = 200
Height = 23
Top = 32
Width = 80
OnKeyPress = Edit1KeyPress
ParentShowHint = False
ShowHint = True
TabOrder = 2
Text = 'Edit3'
end
object Label4: TLabel
Left = 296
Height = 15
Top = 8
Width = 47
Caption = 'Move dir'
ParentColor = False
end
object Label5: TLabel
Left = 416
Height = 15
Top = 8
Width = 52
Caption = 'New state'
ParentColor = False
end
object Edit5: TEdit
Left = 416
Height = 23
Top = 32
Width = 80
OnKeyPress = Edit1KeyPress
TabOrder = 4
Text = 'Edit5'
end
object ComboBox1: TComboBox
Left = 296
Height = 23
Top = 30
Width = 100
ItemHeight = 15
ItemIndex = 1
Items.Strings = (
'Left'
'None'
'Right'
)
Style = csDropDownList
TabOrder = 3
Text = 'None'
end
object Label6: TLabel
Left = 512
Height = 15
Top = 8
Width = 54
Caption = 'Comment'
ParentColor = False
end
object Edit4: TEdit
Left = 512
Height = 23
Top = 32
Width = 216
OnKeyPress = Edit1KeyPress
TabOrder = 5
Text = 'Edit4'
end
end